CSS quotes Property (original) (raw)
Last Updated : 28 Aug, 2024
This property is used to specify the quotation mark for quotations used in the sentence.
**Syntax:
quotes: none|auto|string;
**Default Value: auto
**Property values:
- **none: It is the default value. It will not produce any quotation marks.
- **string: This property is used to specify what type of quotation mark should be used in the sentence. The first two values indicate the first level of the Quotation mark. The second two values indicate the second level of the quotation mark.
**Example: In this example, we use quotes: none; property.
html `
CSS | quotes PropertyGeeksForGeeks
quotes:none;
geeksforgeeks.
`
**Output:

**Example: In this example, we are using quotes: string; property.
html `
CSS | quotes Property