table-align-float-ref.xhtml (777B)
1 <?xml version="1.0" encoding="UTF-8"?> 2 <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd"> 3 <html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en" lang="en"> 4 <head> 5 <meta charset="utf-8"/> 6 <title>Table align attribute reference</title> 7 <style type="text/css"> 8 table { border: 1px solid black; width: 300px; } 9 .left { float: left; } 10 .center { margin-left: auto; margin-right: auto; } 11 .right { float: right; } 12 </style> 13 </head> 14 <body> 15 <table class="left"> 16 <tr><td>Left aligned table</td></tr> 17 </table> 18 <br/> 19 <table class="center"> 20 <tr><td>Center aligned table</td></tr> 21 </table> 22 <br/> 23 <table class="right"> 24 <tr><td>Right aligned table</td></tr> 25 </table> 26 </body> 27 </html>