hyphenation-caps-1.html (405B)
1 <!DOCTYPE html> 2 <meta charset=utf-8> 3 <style> 4 div { font: 16px/24px serif; width: 8em; float: left; font-kerning: none; } 5 p { hyphens: auto; width: 2em; margin: 1em 0; } 6 </style> 7 <script> 8 for (const lang of ["en-US", "en", "de", "de-DE", "de-1901", "de-1996"]) { 9 document.write("<div lang='" + lang + "'>" + lang + 10 ":<p>intercaps</p><p>Intercaps</p><p>interCaps</p></div>"); 11 } 12 </script>