+ 1
Nowrap
What is a difference between word-spacing normal, inherit and nowrap? Look like the same result.
1 Answer
+ 1
Aren't you mixing up 'white-space' property with 'word-spacing'?
p { white-space: nowrap; }
Specify that the text will never wrap. It'll be a long line of text with horizontal scrollbar if it's a long paragraph.
p { word-spacing: 25px; }
Means the space between the words should be 25 px.