text-decoration-inset-010.html (737B)
1 <!DOCTYPE html> 2 <meta charset="utf-8"> 3 4 <title>CSS Text Decoration 4: text-decoration-inset</title> 5 6 <link rel="help" href="https://drafts.csswg.org/css-text-decor-4/#text-decoration-skip-inset-property"> 7 <link rel="author" title="Jonathan Kew" href="mailto:jkew@mozilla.com"> 8 9 <link rel="mismatch" href="reference/text-decoration-inset-010-notref.html"> 10 11 <style> 12 body { 13 background: white; 14 color: black; 15 } 16 div { 17 position: relative; 18 } 19 h1 { 20 position: absolute; 21 } 22 u { 23 text-decoration-color: blue; 24 text-decoration-inset: auto; 25 text-underline-position: under; 26 } 27 </style> 28 29 <p>The underlines for "石井" and for "艾俐俐" should be visibly separate:</p> 30 31 <div> 32 <h1 lang="zh"> 33 <u>石井</u><u>艾俐俐</u> 34 </h1> 35 </div>