text-autospace-004-ref.html (803B)
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 #container { 7 writing-mode: sideways-lr; 8 } 9 .test { 10 font-family: Ahem; 11 font-size: 40px; 12 } 13 .no-autospace { 14 text-autospace: no-autospace; 15 } 16 .spacing { 17 margin: 5px; 18 } 19 .spacing-bottom { 20 margin-bottom: 5px; 21 } 22 </style> 23 <div id="container"> 24 <div class="test no-autospace">国国<span class="spacing">XX</span>国</div> 25 <div class="test no-autospace">国。XX<span class="spacing-bottom">国</span></div> 26 <div dir="rtl" class="test no-autospace">国国<span class="spacing">XX</span>国</div> 27 <div dir="rtl" class="test no-autospace">国。XX<span class="spacing-bottom">国</span></div> 28 </div>