wordbreak-8.html (687B)
1 <!DOCTYPE html> 2 <html> 3 <head> 4 <meta http-equiv="Content-Type" content="text/html; charset=UTF-8"> 5 <style type="text/css"> 6 .breakall { width: 0px; word-break: break-all; } 7 .keepall { width: 0px; word-break: keep-all; } 8 .lc { text-transform: lowercase; } 9 .uc { text-transform: uppercase; } 10 </style> 11 <title>Test - word-break:break-all with text-transform and clusters</title> 12 </head> 13 <body> 14 <div class="breakall lc">fox fo̥ẋ</div><br> 15 <div class="keepall lc">fox fo̥ẋ</div><br> 16 <div class="breakall uc">fox fo̥ẋ</div><br> 17 <div class="keepall uc">fox fo̥ẋ</div><br> 18 </body> 19 </html>