tor-browser

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

text-autospace-transform-full-width-001-ref.html (674B)


      1 <!DOCTYPE html>
      2 <meta charset="utf-8">
      3 <title>CSS Text Reference: text-transform:full-width suppresses autospacing</title>
      4 <link rel="author" title="Ting-Yu Lin" href="mailto:tlin@mozilla.com">
      5 <link rel="author" title="Mozilla" href="https://www.mozilla.org/">
      6 <link rel="help" href="https://drafts.csswg.org/css-text-4/#text-autospace-property">
      7 <link rel="stylesheet" href="/fonts/ahem.css">
      8 
      9 <style>
     10 #container {
     11  font-family: Ahem;
     12  font-size: 20px;
     13  text-autospace: no-autospace;
     14 }
     15 .fw {
     16  text-transform: full-width;
     17 }
     18 </style>
     19 
     20 <div id="container">
     21  <div class="fw">国国XX国</div>
     22  <div class="fw" style="writing-mode: vertical-rl" >国国XX国</div>
     23 </div>