tables-001

CSS Tables: Nested anonymous table objects and border-spacing

WeasyPrint

This browser

Assertion
border-spacing is applied around anonymous table objects, but anonymous table objects only exist if the table has content.

Source

 1 <!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.01//EN" "http://www.w3.org/TR/html4/strict.dtd">
 2 <html>
 3  <head>
 4   <title>CSS Test: CSS Tables: Nested anonymous table objects and border-spacing</title>
 5   <link rel="author" title="Ian Hickson" href="mailto:ian@hixie.ch">
 6   <link rel="alternate" href="http://www.hixie.ch/tests/adhoc/css/box/table/009.xml" type="application/xhtml+xml">
 7   <link rel="help" href="http://www.w3.org/TR/CSS21/tables.html#anonymous-boxes">
 8   <link rel="help" href="http://www.w3.org/TR/CSS21/tables.html#separated-borders">
 9   <meta name="flags" content="">
10   <meta name="assert" content="border-spacing is applied around anonymous table objects, but anonymous table objects only exist if the table has content."> 
11   <style type="text/css">
12 
13     /* test */
14     body * { display: table-cell; } /* turn any non-existent elements into table cells */
15     .table { display: table; background: red; }
16     .row   { display: table-row; }
17     /* reset all the other properties that might give us gaps */
18     .table, .row { padding: 0; margin: 0; border: 0; border-spacing: 1em; }
19 
20     /* control */
21     .table, .control { position: absolute; top: 4em; left: 2em; }
22     .control { display: block; height: 2em; width: 2em; background: green; }
23 
24   </style>
25  </head>
26  <body>
27   <p>Test passes if there is a green square below and no red.</p>
28   <div class="table">
29    <div class="row">
30     <div class="table"></div>
31     <!-- nothing -->
32    </div>
33   </div>
34   <div class="control"></div>
35  </body>
36 </html>