Welcome to Code Sharer, a code gallery for creating, saving and sharing all kinds of code snippets.

CSS — Increasing Spacing between Words

Posted On: Wednesday, October 29, 2014 at 8:01 PM

This snip will increase the spacing between each word.
<!DOCTYPE html>
<html>
<head>
<style>
p {
word-spacing: 30px;
}
</style>
</head>
<body>

<p>This is some text in a paragraph.</p>

</body>
</html>

Joined on Wednesday, October 29, 2014
Contributed 2 Snips

Get Social and Share

Tags