Forum How do I...?

<q> with no quotes

fbrzvnrnd
How can I have a <q> with no automatic quotes in output? I try the:

q:before {
content: no-open-quote;
}
q:after {
content: no-close-quote;
}

But prince put quotes in phrases i tag as <q>.

f.
jim_albright
Try

content: normal or
content: ""

Jim Albright
Wycliffe Bible Translators

fbrzvnrnd
jim_albright wrote:
Try

content: normal or
content: ""



Thank you, the content: "" seems to work!

f.