tables-001.xht (1515B)
1 <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.1//EN" "http://www.w3.org/TR/xhtml11/DTD/xhtml11.dtd"> 2 <html xmlns="http://www.w3.org/1999/xhtml"> 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="assert" content="border-spacing is applied around anonymous table objects, but anonymous table objects only exist if the table has content."/> 10 <style type="text/css"> 11 12 /* test */ 13 body * { display: table-cell; } /* turn any non-existent elements into table cells */ 14 .table { display: table; background: red; } 15 .row { display: table-row; } 16 /* reset all the other properties that might give us gaps */ 17 .table, .row { padding: 0; margin: 0; border: 0; border-spacing: 1em; } 18 19 /* control */ 20 .table, .control { position: absolute; top: 4em; left: 2em; } 21 .control { display: block; height: 2em; width: 2em; background: green; } 22 23 </style> 24 </head> 25 <body> 26 <p>Test passes if there is a green square below and no red.</p> 27 <div class="table"> 28 <div class="row"> 29 <div class="table"/> 30 <!-- nothing --> 31 </div> 32 </div> 33 <div class="control"/> 34 </body> 35 </html>