Properties
CSS
quotes
The quotes property specifies quotation marks for any number of embedded quotations.
CSS2
quotes: [<string> <string>]+ | none | inherit
| Initial: | depends on user agent |
| Applies To: | all elements |
| Inherited: | yes |
| Percentages: | NA |
| Media: | visual |
Note: Doctype is required for Internet Explorer 8+
Values
quotes: value;
| Value: | Description: |
| inherit | Takes the same computed value as the property for the element's parent |
| none | No quotation marks |
| string | List of quotation mark pairs |
DOM
[window.]document.getElementById("element-id").style.quotes = "quotes";
