tor-browser

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

text-decoration-propagation-1-standards-ref.html (980B)


      1 <!DOCTYPE HTML>
      2 <title>text-decoration</title>
      3 <style>
      4 *{
      5     text-decoration-skip-ink: none;
      6 }
      7 </style>
      8 <h1>text-decoration on a block</h1>
      9 
     10  <u>text directly in parent</u>
     11 
     12  <div><u>text in block</u></div>
     13 
     14  <div style="float:left; clear: left">text in float</div>
     15  <div style="clear:left"></div>
     16 
     17  <div style="display:inline-block">text in<br>inline-block</div><u>
     18  </u><div style="display:inline-table">text in<br>inline-table</div>
     19 
     20  <div style="height: 2em">
     21    <div style="position: absolute">text in abs-pos</div>
     22  </div>
     23 
     24 <h1>text-decoration on an inline</h1>
     25 
     26  <u>text directly in parent</u>
     27 
     28  <div><u>text in block</u></div>
     29 
     30  <div style="float:left; clear: left">text in float</div>
     31  <div style="clear:left"></div>
     32 
     33  <div style="display:inline-block">text in<br>inline-block</div><u>
     34  </u><div style="display:inline-table">text in<br>inline-table</div>
     35 
     36  <div style="height: 2em">
     37    <div style="position: absolute">text in abs-pos</div>
     38  </div>