Possible Duplicate:
Adding HTML entities using CSS content
I have the following setup
CSS:
.header:before {
content: "«";
}
.header:after {
content: "»";
}
HTML:
<h3 class="header">Hello, this is some text which should be wrapped.</h3>
I'd simply like whatever is written in header to be wrapped in « («
) and » (»
). How can I make this work in the CSS? It's currently appearing as:
« Hello, this is some text which should be wrapped. »
rather than:
« Hello, this is some text which should be wrapped. »