在JavaScript中使用wordSpacing 属性设置单词之间的间距。
您可以尝试运行以下代码以了解如何实现wordSpacing 属性-
<!DOCTYPE html> <html> <body> <p id = "pid">This is an example paragraph.</p> <button type = "button" id="btn" onclick = "display()">Set Space</button> <script> function display() { document.getElementById("pid").style.wordSpacing = "25px"; } </script> </body> </html>