Version: Level 2
Compability: Currently not supported by any browser.
The quotes property is a blank space delimited list of one or more types of opening and closing quotations marks that will be used in each successive level of embedded quotes. This property is inherited.
You use the content property to set the quotation marks before and after a specified element. This allows the selection of various types of quotation marks in a style-sensitive and context-dependent manner. (Note that you do not have to just use quotation marks. Since you are simply providing a string, you could use <, >, *, ?, and other characters.)
<html>
<style type="text/css">
q { quotes: """ """ "'" "'"; }
</style>
<q>
This is an <q>emedded</q> quote.
</q>
<html>
"This is an 'embedded' quote."