hyphens-auto-last-word-001.html (642B)
1 <!DOCTYPE html> 2 <title>CSS Text: `hyphens: auto` for last word</title> 3 <link rel="author" title="Koji Ishii" href="mailto:kojii@chromium.org"> 4 <link rel="help" href="https://www.w3.org/TR/css-text-3/#hyphenation"> 5 <link rel="match" href="reference/hyphens-auto-last-word-001-ref.html"> 6 <link rel="match" href="reference/hyphens-auto-last-word-001-ref2.html"> 7 <style> 8 div { 9 hyphens: auto; 10 width: 5ch; 11 border: 1px solid blue; 12 } 13 </style> 14 <body lang="en-us"> 15 <div style="width: 10ch">Test example</div> 16 <div>example</div> 17 <div>1 example</div> 18 <div>1234 example</div> 19 <div>example 5678</div> 20 <div>1234 example 5678</div> 21 </body>