运行 ❯
获取您自己的网站
×
更改方向
保存代码
更改主题,深色/浅色
前往 Spaces
<!DOCTYPE html> <html> <body> <h1>Change word-spacing with JavaScript</h1> <p>Click the "Try it" button to make the space between words in the DIV element 20 pixels:</p> <button onclick="myFunction()">Try it</button> <div id="myDIV"> Lorem ipsum dolor sit amet, consectetuer adipiscing elit, sed diam nonummy nibh euismod tincidunt ut laoreet dolore magna aliquam erat volutpat. </div> <script> function myFunction() { document.getElementById("myDIV").style.wordSpacing = "20px"; } </script> </body> </html>