tor-browser

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

trailing-space-align-start.tentative.html (622B)


      1 <!DOCTYPE html>
      2 <title>Preserved trailing spaces when `text-align: left`</title>
      3 <link rel="help" href="http://crbug.com/966773">
      4 <link rel="author" title="Koji Ishii" href="mailto:kojii@chromium.org">
      5 <link rel="match" href="reference/trailing-space-align-start-ref.html">
      6 <style>
      7 div {
      8  font-family: monospace;
      9  font-size: 30px;
     10  width: 3ch;
     11  overflow: auto;
     12 }
     13 .pre { white-space: pre; }
     14 .pre-wrap { white-space: pre-wrap; }
     15 </style>
     16 <body>
     17  <div class="pre">0 0 </div>
     18  <div class="pre">0 0</div>
     19  <div class="pre-wrap">0 0</div>
     20  <div class="pre-wrap">0 0 </div>
     21  <div class="pre-wrap">0 0 0 0 </div>
     22 </body>