Forum How do I...?

css property content for multiple elements

abc
Hi Mike,

Would it be possible to break the content/text inserted using css as follows:

p:after {
content: "Aa \2003 Bb \2003 Cc";
float: right;
margin-right: -40pt;
}

What I am expecting is I need the Aa, Bb and Cc should display on separate lines(each individual lines). In short required a line break in the final PDF.

Thanks for any help on this.
mikeday
Add \a to the string for each newline and specify "white-space: pre-line".
abc
okay, thanks for the info