简单教程
提交运行
代码编辑器:
<style> #myDIV{ width:150px; height:100px; background-color:lightblue; border:1px solid black; } </style> <p>点击“尝试一下”按钮,让 DIV 元素在任意两个字母之间断行:</p> <div id="myDIV">Thiscouldbeaninsainlylargeword</div> <button onclick="myFunction()">尝试一下</button> <script> function myFunction(){ document.getElementById("myDIV").style.wordBreak = "break-all"; } </script>
运行结果: