CSS Word Spacing
Word spacing refers to the space between two words in a paragraph. Increasing this space along with line spacing, can dramatically make it easier for people to read the text on screen.
The code for word spacing is:
p {word-spacing: 10px}
This code makes the spacing between two words to be 10 pixels. You just change this value to whatever you feel is needed.
To change the word spacing of all p tag with a specific class name, use the code:
p.class {word-spacing: 10px}, where class is the class name that you've given to some of your paragraphs
To change the word spacing of all p tag with a specific identifier name, use the code:
p#identifier {word-spacing: 10px}, where identifier is the identifier name what you've given to one of your paragraph
Next: CSS Letter Spacing