tor-browser

The Tor Browser
git clone https://git.dasho.dev/tor-browser.git
Log | Files | Refs | README | LICENSE

table-align-float.xhtml (785B)


      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 test</title>
      7  <link rel="help" href="https://html.spec.whatwg.org/#tables-2"/>
      8  <link rel="match" href="table-align-float-ref.xhtml"/>
      9  <style type="text/css">
     10    table { border: 1px solid black; width: 300px; }
     11  </style>
     12 </head>
     13 <body>
     14  <table align="LEFT">
     15    <tr><td>Left aligned table</td></tr>
     16  </table>
     17  <br/>
     18  <table align="CENTER">
     19    <tr><td>Center aligned table</td></tr>
     20  </table>
     21  <br/>
     22  <table align="RIGHT">
     23    <tr><td>Right aligned table</td></tr>
     24  </table>
     25 </body>
     26 </html>