tor-browser

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

text-justify-word-separators-ref.html (981B)


      1 <!DOCTYPE html>
      2 <html>
      3 <head>
      4    <meta charset="utf-8">
      5    <link rel="author" title="Martin Robinson" href="mailto:mrobinson@igalia.com">
      6    <link rel="help" href="https://drafts.csswg.org/css-text/#word-separator">
      7    <meta name="assert" content="text-justify:inter-word should adjust spacing at all word separators.">
      8    <link rel="stylesheet" type="text/css" href="/fonts/ahem.css" />
      9    <style>
     10        .justified {
     11            font: 10px/1 Ahem;
     12            text-align: justify;
     13            text-justify: inter-word;
     14            width: 120px;
     15            border: solid 1px black;
     16        }
     17    </style>
     18 </head>
     19 <body>
     20    <div class="justified">XXXX XXXX XXXX</div>
     21    <div class="justified">XXXX XXXX XXXX</div>
     22    <div class="justified">XXXX XXXX XXXX</div>
     23    <div class="justified">XXXX XXXX XXXX</div>
     24    <div class="justified">XXXX XXXX XXXX</div>
     25    <div class="justified">XXXX XXXX XXXX</div>
     26    <div class="justified">XXXX XXXX XXXX</div>
     27 </body>
     28 </html>