text-wrap-balance-before-after-001-ref.html (598B)
1 <!DOCTYPE html> 2 <style> 3 .container { 4 font: 16px monospace; 5 margin: 1em; 6 width: 60ch; 7 } 8 9 .text1 { 10 text-wrap: balance; 11 margin-bottom: 1em; 12 outline: 1px dashed gray; 13 } 14 </style> 15 16 <p>The two paragraphs should look identical, both having balanced lines:</p> 17 18 <div class="container"> 19 <div class="text1"> 20 Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. 21 </div> 22 <div class="text1"> 23 Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. 24 </div> 25 </div>