tor-browser

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

text-autospace-001.html (627B)


      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="stylesheet" type="text/css" href="/fonts/ahem.css" />
      5 <link rel="match" href="text-autospace-001-ref.html">
      6 <style>
      7 .test {
      8  font-family: Ahem;
      9  font-size: 40px;
     10 }
     11 .no-autospace {
     12  text-autospace: no-autospace;
     13 }
     14 .normal {
     15  text-autospace: normal;
     16 }
     17 </style>
     18 <div id="container">
     19  <div class="test normal">国国XX国</div>
     20  <div class="test normal">国。XX国</div>
     21  <div dir="rtl" class="test normal">国国XX国</div>
     22  <div dir="rtl" class="test normal">国。XX国</div>
     23 </div>