Lets say I have this paragraph:
This is my paragraph
What is the CSS code to add double quotes to this
Use pseudo-elements:
p.myclass:before, p.myclass:after { content: '"'; }
Fiddle: http://jsfiddle.net/2bE8j/1/