text-autospace-first-line-001-ref.html (598B)
1 <!DOCTYPE html> 2 <meta charset="utf-8"> 3 <link rel="help" href="https://drafts.csswg.org/css-text-4/#text-autospace-property"> 4 <link rel="stylesheet" type="text/css" href="/fonts/ahem.css" /> 5 <style> 6 .test { 7 font-family: Ahem; 8 font-size: 40px; 9 text-autospace: no-autospace; 10 } 11 .first-line::first-line { 12 font-size: 200%; 13 } 14 .manual-spacing { 15 margin: 0 0.125em; 16 } 17 .zoom { 18 font-size: 200%; 19 } 20 </style> 21 <div id="container" class="test"> 22 <div class="zoom"> 23 国国<span class="manual-spacing">XX</span>国 24 </div> 25 <div> 26 国国<span class="manual-spacing">XX</span>国 27 </div> 28 </div>