CSS quotes property
Usage
Sets the characters to be used for quotation marks. Not supported by many browsers.
Values
- none
- "[string]" "[string]"... - each string pair sets the opening and closing quotes for a subsequent level of embedding. In the example below the first level of quotes is set to be " characters, and the second level of quotes to be ' characters.
Example
Code:
p {
quotes: """ """ "'" "'";
}