text-wrap-balance-align-001.html (605B)
1 <!DOCTYPE html> 2 <link rel="help" href="https://drafts.csswg.org/css-text-4/#valdef-text-wrap-balance"> 3 <link rel="match" href="reference/text-wrap-balance-align-001-ref.html"> 4 <style> 5 .container { 6 font-family: monospace; 7 font-size: 20px; 8 width: 20ch; 9 border: solid 1px; 10 text-wrap: balance; 11 } 12 </style> 13 <div class="container" style="text-align: right"> 14 123456789 123 567 15 123456789 123 567 16 </div> 17 <div class="container" style="text-align: center"> 18 123456789 123 567 19 123456789 123 567 20 </div> 21 <div class="container" style="text-align: justify"> 22 123456789 123 567 23 123456789 123 567 24 </div>