tor-browser

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

text-underline-position-vertical.html (620B)


      1 <!DOCTYPE HTML>
      2 <html>
      3 <head>
      4    <meta charset="utf-8">
      5    <link rel="help" href="https://www.w3.org/TR/css-text-decor-3/#text-underline-position-property">
      6    <link rel="match" href="reference/text-underline-position-vertical-ref.html">
      7    <style>
      8        body { writing-mode: vertical-rl; }
      9        .underline { text-decoration: underline; }
     10        .overline { text-decoration: overline; }
     11    </style>
     12 </head>
     13 <body lang="en">
     14    <div class="overline" style="text-underline-position: right">サンプル</div>
     15    <div class="underline" style="text-underline-position: left">サンプル</div>
     16 </body>
     17 </html>