quotes Description:
The quotes property defines the quotation marks for any number of embedded quotations.
quotes in CSS Versions:
quotes Syntax:
quotes: <string> <string> | none | inherit
- <string>
Display the string as the quotation mark. The first string is the open quote, the second string is the close quote. - none
Do not display a quotation mark for the content: open-quote or close-quote. - inherit
The element should have the same quotes setting as the parent.
quotes Initial Value:
Depends upon the user agent.
quotes Applies To:
All elements.
quotes Inheritance:
This property is inherited.
quotes Browser Support:
quotes media type:
- All
quotes Examples
Put curly quotes around blockquotes
<style>
blockquote { quotes: '' ''; }
</style>
quotes Special Notes:
- Internet Explorer does not support this property.

