tor-browser

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

table-margin-002.xht (1141B)


      1 <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd">
      2 <html xmlns="http://www.w3.org/1999/xhtml">
      3  <head>
      4   <title>CSS Test: CSS Tables: Margins</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/005.html" type="text/html"/>
      7   <link rel="help" href="http://www.w3.org/TR/CSS21/box.html#margin-properties" />
      8   <style type="text/css">
      9    * {
     10      margin: 0;
     11      padding: 0;
     12      border: 0;
     13      border-spacing: 0;
     14    }
     15    table {
     16      border-left: 1em solid;
     17      border-right: 19em solid;
     18    }
     19    div {
     20      border: green solid;
     21      width: 20em;
     22      height: 10em;
     23      font: 1em/1em monospace;
     24      overflow: hidden;
     25    }
     26    span {
     27      background: red;
     28      color: yellow;
     29      font-size: 0.9em;
     30    }
     31   </style>
     32  </head>
     33  <body>
     34     <div> <table> <tr> <td>
     35       This____
     36       text____
     37       should__
     38       be______
     39       wrapped,
     40       one_____
     41       word____
     42       to______
     43       a_______
     44       line.___
     45 <span>_FAIL!__</span>
     46     </td> </tr> </table> </div>
     47  </body>
     48 </html>