tor-browser

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

text-autospace-break-001.html (705B)


      1 <!DOCTYPE html>
      2 <meta charset="utf-8">
      3 <link rel="help" href="https://drafts.csswg.org/css-text-4/#text-autospace-property">
      4 <link rel="match" href="text-autospace-break-001-ref.html">
      5 <link rel="stylesheet" type="text/css" href="/fonts/ahem.css">
      6 <style>
      7 .test-container {
      8  font-family: Ahem;
      9  font-size: 40px;
     10  width: 4.1em;
     11  text-autospace: normal;
     12 }
     13 .test > span {
     14  outline: 1px solid blue;
     15 }
     16 </style>
     17 <div class="test-container">
     18  <div class="test"><span>国国国国X国</span></div>
     19  <div class="test"><span>国国国国1国</span></div>
     20  <div class="test"><span>XXXX国X</span></div>
     21  <div class="test"><span>1111国1</span></div>
     22  <div class="test"><span>国X国</span></div>
     23 </div>