None of the following code works :
p:before { content: \" \"; } p:before { content: \" \"; }
How do I add white space bef
You can use the unicode of a non breaking space :
p:before { content: "\00a0 "; }
See JSfiddle demo
[style improved by @Jason Sperske]