white-space-wrap-after-nowrap-001-ref.html (465B)
1 <!DOCTYPE html> 2 <meta charset="utf-8"> 3 <style> 4 div { 5 width: 10ch; 6 border: 2px solid blue; 7 line-height: 1; 8 } 9 .ideo > div { 10 width: 1em; 11 } 12 </style> 13 <body> 14 <section> 15 <div>12345<br>67890</div> 16 <div>12345<br>67890</div> 17 <div>12345<br>67890</div> 18 <div>12345<br>67890</div> 19 20 <div>12345<br>67890</div> 21 <div>12345<br>67890</div> 22 </section> 23 24 <section class="ideo"> 25 <div>国<br>国</div> 26 <div>国<br>国</div> 27 </section> 28 </body>