Edit This Code:
<!DOCTYPE html>
<html>
<body>

<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>


Result:
Try it Yourself - © w3schools.com
Privacy Policy