I want to add a blank space after some content, however the content: \" \"; doesn\'t seem to work.
content: \" \";
This is my code:
h2:after { conte
Turns out it needs to be specified via escaped unicode. This question is related and contains the answer.
The solution:
h2:after { content: "\00a0"; }