Remove styling from q element
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?
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: "" "" "" "";
}
You can reset them:
q:before,q:after{content:''}
精彩评论