Open In App

CSS quotes Property

Improve
Improve
Like Article
Like
Save
Share
Report

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 quotations mark. 
  • 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




<!DOCTYPE html>
<html>
<head>
    <title>
        CSS | quotes Property
    </title>
    <style>
        #geeks {
            quotes: none;
        }
    </style>
</head>
 
<body>
    <center>
        <h1 style="color:green;">GeeksForGeeks</h1>
        <h2 style="color:green;">quotes:none;</h2>
        <p><q id="geeks">geeksforgeeks.</q></p>
    </center>
</body>
</html>


Output: 

Example: In this example, we are using quotes: string; property.

html




<!DOCTYPE html>
<html>
 
<head>
    <title>
        CSS | quotes Property
    </title>
    <style>
        #geeks {
            quotes: '‹' '›';
        }
 
        #gfg {
            quotes: '«' '»';
        }
 
        #sudo {
            quotes: '‹' '›' '«' '»';
        }
 
        #g {
            quotes: '‘' '’';
        }
 
        #f {
            quotes: '”' '„';
        }
 
        #for {
            quotes: '\2039' '\203A';
        }
 
        #data {
            quotes: '\'' 00AB'
                     '\00BB';
        }
 
        #q {
            quotes: '\2039' '\203A'
                '\00AB'
                '\00BB';
        }
 
        #google {
            quotes: '\2018' '\2019';
        }
 
        #mark {
            quotes: '\201D' '\201E';
        }
 
        h4 {
            color: green;
        }
    </style>
</head>
 
<body>
    <center>
        <h1 style="color:green;">GeeksForGeeks</h1>
        <h2 style="color:green;">quotes:string;</h2>
        <h4>
            <p><q id="geeks">geeksforgeeks.</q></p>
 
            <p><q id="gfg">geeksforgeeks.</q></p>
 
            <p><q id="sudo">geeksforgeeks.</q></p>
 
            <p><q id="q">geeksforgeeks.</q></p>
 
            <p><q id="f">geeksforgeeks.</q></p>
 
            <p><q id="for">geeksforgeeks.</q></p>
 
            <p><q id="data">geeksforgeeks.</q></p>
 
            <p><q id="google">geeksforgeeks.</q></p>
 
            <p><q id="mark">geeksforgeeks.</q></p>
        </h4>
    </center>
</body>
</html>


Output: 

Supported Browsers: The browsers supported by quotes Property are listed below: 

  • Google Chrome 11.0
  • Edge 12.0
  • Internet Explorer 8.0
  • Firefox 1.5
  • Opera 4.0
  • Safari 9.0


Last Updated : 04 Aug, 2023
Like Article
Save Article
Previous
Next
Share your thoughts in the comments
Similar Reads