text-decoration-propagation-1-quirks.html (1039B)
1 <title>text-decoration</title> 2 <style> 3 *{ 4 text-decoration-skip-ink: none; 5 } 6 </style> 7 <h1>text-decoration on a block</h1> 8 9 <div style="text-decoration: underline"> 10 11 text directly in parent 12 13 <div>text in block</div> 14 15 <div style="float:left; clear: left">text in float</div> 16 <div style="clear:left"></div> 17 18 <div style="display:inline-block">text in<br>inline-block</div> 19 <div style="display:inline-table">text in<br>inline-table</div> 20 21 <div style="height: 2em"> 22 <div style="position: absolute">text in abs-pos</div> 23 </div> 24 25 </div> 26 27 <h1>text-decoration on an inline</h1> 28 29 <div style="text-decoration: underline; display: inline"> 30 31 text directly in parent 32 33 <div>text in block</div> 34 35 <div style="float:left; clear: left">text in float</div> 36 <div style="clear:left"></div> 37 38 <div style="display:inline-block">text in<br>inline-block</div> 39 <div style="display:inline-table">text in<br>inline-table</div> 40 41 <div style="height: 2em"> 42 <div style="position: absolute">text in abs-pos</div> 43 </div> 44 45 </div>