Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

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?

share|improve this question
1  
I don't understand the expected outcome. Are you trying to add padding using content. It seems like it'd be impossible to tell if the space was added. – jnewman Mar 29 '11 at 3:35
1  
It is a weird question, you should use padding for adding space, no content:after, maybe you do not know about the difference between display:inline and display:block? – Littlemad Mar 29 '11 at 3:43
I am trying to add padding via content. – bradley.ayers Mar 29 '11 at 3:44
I understand that you are doing that, but why would you use something that it is less retro browser compatible, when you can use padding that has more support? – Littlemad Mar 29 '11 at 3:45
I'm adding a background to the h2 that I don't want to appear behind the text, so I use the :first-line psuedo element and set the background-color to white, however then the background image sits up against the last letter of the h2, so I used the :after psuedo element to add a space. – bradley.ayers Mar 29 '11 at 3:59

1 Answer

up vote 54 down vote accepted

Turns out it needs to be specified via escaped unicode. This question is related and contains the answer.

The solution:

h2:after {
    content: "\00a0";
}
share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.