tor-browser

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

nowrap.html (757B)


      1 <!DOCTYPE html>
      2 <meta charset="utf-8">
      3 <title>Don't break rubies with nowrap</title>
      4 <link rel="help" href="https://drafts.csswg.org/css-ruby/#break-within">
      5 <link rel="match" href="nowrap-ref.html">
      6 <style>
      7 .tw-nowrap {
      8  text-wrap: nowrap;
      9 }
     10 .ws-nowrap {
     11  white-space: nowrap;
     12 }
     13 
     14 span {
     15  white-space: nowrap;
     16 }
     17 
     18 p {
     19  inline-size: 6em;
     20 }
     21 </style>
     22 
     23 <p class="tw-nowrap"><ruby>垂直二等辺三角形<rt>すいちょくにとうへんさんかくけい</ruby></p>
     24 <p class="ws-nowrap"><ruby>垂直二等辺三角形<rt>すいちょくにとうへんさんかくけい</ruby></p>
     25 <p><ruby><span>垂直</span><span>二等辺</span><span>三角形</span><rt><span>すいちょく</span><span>にとうへん</span><span>さんかくけい</span></ruby></p>