tor-browser

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

text-autospace-001-ref.html (789B)


      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 <style>
      6 .test {
      7  font-family: Ahem;
      8  font-size: 40px;
      9 }
     10 .no-autospace {
     11  text-autospace: no-autospace;
     12 }
     13 .normal {
     14  text-autospace: normal;
     15 }
     16 .spacing {
     17  margin: 5px;
     18 }
     19 .spacing-left {
     20  margin-left: 5px;
     21 }
     22 </style>
     23 <div id="container">
     24  <div class="test no-autospace">国国<span class="spacing">XX</span></div>
     25  <div class="test no-autospace">国。XX<span class="spacing-left"></span></div>
     26  <div dir="rtl" class="test no-autospace">国国<span class="spacing">XX</span></div>
     27  <div dir="rtl" class="test no-autospace">国。XX<span class="spacing-left"></span></div>
     28 </div>