tor-browser

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

block-in-inline-align-justify-001.html (659B)


      1 <!DOCTYPE html>
      2 <meta name="assert" content="Test if `text-align: justify` handles block-in-inline correctly">
      3 <link rel="match" href="block-in-inline-align-justify-001-ref.html"/>
      4 <link rel="help" href="http://www.w3.org/TR/CSS21/visuren.html#anonymous-block-level" />
      5 <link rel='help' href='https://drafts.csswg.org/css-text-3/#text-align-property'>
      6 <link rel="author" title="Koji Ishii" href="mailto:kojii@chromium.org" />
      7 <style>
      8 section {
      9  width: 10ch;
     10 }
     11 .justify {
     12  text-align: justify;
     13 }
     14 </style>
     15 <body>
     16  <section class="justify">
     17    <span>
     18      1234 5678 9012
     19      <div>1234 5678 9012</div>
     20      1234 5678 9012
     21    </span>
     22  </section>
     23 </body>