Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

Okay, what I want is this: When the <p> tag ends with </p>, I want to add a character at the end of the line. For example

<p>Something and more!</p>

Should look like

Something and more!_

Where the '_' (underscore) is the added character.
Is this possible with CSS?
Is it also possible at the end of a line?

share|improve this question
Why don't you add a padding-bottom: 15px (or whatever your line height is) to the <p> tag's css? – janoliver Nov 1 '11 at 20:08
1  
There is no line (and no spoon). There are only boxes in HTML and CSS. – DwB Nov 1 '11 at 20:09

3 Answers

up vote 4 down vote accepted

Yes it is possible

p:after{
    content:"_";
}
share|improve this answer

If I've understood your question right, then I think the following works as you require:

p:after {
    content: '_';
}

JS Fiddle demo.

Which seems compatible even with IE 8 and above.

share|improve this answer
What's with the link ? – Nasreddine Nov 1 '11 at 20:16
1  
I...don't know. Updated it, though. Thanks for the catch, and the notification. – David Thomas Nov 1 '11 at 20:19

You can use the pseudo-class :after:

p:after { content: '_'; }

It’s not possible for each line though, as CSS practically does not know about “lines”.

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.