Open In App

CSS quotes Property

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: 



Example: In this example, we use quotes: none; property. 




<!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.




<!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: 


Article Tags :