On the page http://phor.net/personal
there are a bunch of q elements but they all display with quotes around them (OS X 10.6.3 / Chrome 5). I'd like to prevent that. Is this possible?
views:
38answers:
2
+1
A:
This is what the <q>
tag is for! It literally means "quote". Use Internet Explorer, or some other non-standards-compliant browser and they won't show up.
Otherwise, in order to disable the generated content, you can insert this CSS rule into your stylesheet:
q {
quotes: none;
}
Or, if that doesn't work,
q {
quotes: "" "" "" "";
}
amphetamachine
2010-05-08 20:53:59
Good find. I thought it was content:none, but this takes the cake.
Full Decent
2010-05-08 21:44:06