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?
You can remove CSS style properties from an element by setting the property to a null value, e.g. box. style. backgroundColor = null; . When an element's CSS property is set to null , the property is removed from the element.
They aren't required but they're good form because they increase readability and crease potential errors.
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: "" "" "" "";
}
If you love us? You can donate to us via Paypal or buy me a coffee so we can maintain and grow! Thank you!
Donate Us With