table-cell-8.html (674B)
1 <!DOCTYPE html> 2 <html class="reftest-paged"> 3 <head> 4 <style> 5 @page { size:5in 3in; margin:0.5in; } 6 #rel { 7 position: relative; 8 margin: 2px; 9 padding: 0; 10 } 11 .abs { 12 position: absolute; 13 margin: 0; 14 padding: 0; 15 top: 25px; 16 left: 25px; 17 width: 50px; 18 height: 50px; 19 background-color: green; 20 } 21 #bad { 22 background-color: blue; 23 } 24 .m { height:1.4in; } 25 .b { border:1px solid; } 26 </style> 27 </head> 28 <body> 29 <div class="m"></div> 30 <table> 31 <tr><td id="rel"><div class="abs b"></div></td></tr> 32 </table> 33 </body> 34 </html>