I want to add a blank space after some content, however the content: " "; doesn't seem to work.
This is my code:
h2:after {
content: " ";
}
... which doesn't work, however this does:
h2:after {
content: "-";
}
What am I doing wrong?
paddingusingcontent. It seems like it'd be impossible to tell if the space was added. – jnewman Mar 29 '11 at 3:35