synthesized-baseline-table-cell-001-ref.html (1590B)
1 <!DOCTYPE html> 2 <html> 3 <head> 4 <meta charset="utf-8"> 5 <title>CSS Box Alignment Reference: Synthesized baseline table cell</title> 6 <link rel="author" title="Mats Palmgren" href="mailto:mats@mozilla.com"> 7 <style> 8 * { vertical-align: baseline; } 9 table { display: inline-table; border: 3px solid; } 10 td { width:10px; background-color:pink; background-clip:content-box; } 11 .p { padding: 0 10px 0 0; height:150px; } 12 .size { height:80px; } 13 .w { background: white; } 14 x { display: block; overflow: hidden; height:50px; background: white; } 15 .xp { height:80px; background-color:pink; } 16 .m50 { margin-top: 50px; } 17 .top { vertical-align:top; } 18 </style> 19 </head> 20 <body> 21 X 22 <table border=5><tr><td class="p w"><x></x></td></tr></table> 23 <table border=5><tr><td class="p w top"></td><td>X</td></tr></table> 24 <table border=2><tr><td><x style="height:0"></x></td></tr></table> 25 <table border=5><tr><td class="p w" style="height:230px"><x class="xp m50"></x></td></tr></table> 26 <table border=5><tr><td class="p w top" style="height:230px"><x class="xp m50"></x></td><td>X</td></tr></table> 27 <table border=2><tr><td><x class="xp"></x></td></tr></table> 28 <table border=2><tr><td class="top"><x class="xp" style="height:20px"></x></td><td><x class="xp" style="height:20px"></td></tr></table> 29 <table border=2><tr><td class="top"><x class="xp" style="height:20px"</td><td rowspan=2></td></tr><tr><td class="top"><x class="xp" style="height:20px"</td></tr></table> 30 <table border=2><tr><td>X</td><td rowspan=2 class="top"></td></tr><tr><td style="height:20px" class="top"></td></tr></table> 31 </body> 32 </html>