tor-browser

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

text-spacing-trim-start-002.html (683B)


      1 <!DOCTYPE html>
      2 <meta charset="utf-8">
      3 <link rel="help" href="https://drafts.csswg.org/css-text-4/#text-spacing-trim-property">
      4 <link rel="match" href="text-spacing-trim-start-002-ref.html">
      5 <style>
      6 @font-face {
      7  font-family: halt-font;
      8  src: url('/fonts/noto/cjk/NotoSansCJKjp-Regular-subset-halt.otf');
      9 }
     10 #container {
     11  font-family: halt-font;
     12  font-size: 20px;
     13  inline-size: 3.6em;
     14  text-spacing-trim: trim-start;
     15 }
     16 </style>
     17 <div id="container">
     18  <!--
     19    The available width is set to fit 3.5 full-width characters, but not 4.
     20    4 characters can fit only if the first open parenthesis is set half-width.
     21  -->
     22  <div>(国国国(国国国<br>(国国国</div>
     23 </div>