运行 ❯
获取您
自己的
网站
×
更改方向
保存代码
更改主题,深色/浅色
前往 Spaces
<!DOCTYPE html> <html> <head> <style> #myDIV { width: 150px; height: 100px; background-color: lightblue; border: 1px solid black; } </style> </head> <body> <h1>Change overflow-wrap with JavaScript</h1> <p>Click the "Try it" button to let the DIV element wrap words:</p> <div id="myDIV">Thiscouldbeaninsainlylargeword</div> <button onclick="myFunction()">Try it</button> <script> function myFunction() { document.getElementById("myDIV").style.overflowWrap = "break-word"; } </script> </body> </html>