tor-browser

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

text-align-justify-tabs-001-ref.html (531B)


      1 <!DOCTYPE html>
      2 <html lang="en">
      3 <head>
      4 <meta charset="utf-8">
      5 <title>text-align: justify and preserved tabs - reference</title>
      6 <link rel="stylesheet" type="text/css" href="/fonts/ahem.css">
      7 
      8 <style>
      9 div {
     10  font: 25px Ahem, monospace;
     11  width: 30ch;
     12  white-space: pre-wrap;
     13  tab-size: 8;
     14  border: 1px solid gray;
     15  padding: 2px;
     16  margin: 2px;
     17 }
     18 </style>
     19 </head>
     20 
     21 <body>
     22 <p>The layout in the two boxes should be the same:</p>
     23 <div>a b c&#9;tab 1&#9;tab 2&#9;jklmnop</div>
     24 <div>a b c&#9;tab 1&#9;tab 2&#9;jklmnop</div>
     25 </body>