Open In App

HTML | DOM Style fontVariant Property

The style fontVariant Property in DOM HTML is used to set the font in capital letters. This property mainly converts lowercase to uppercase letters but the letters have a small font size compared to remaining text. 

Syntax:



object.style.fontVariant
object.style.fontVariant = "normal|small-caps|initial|inherit"

Values:

Value Description
normal Default value with normal text.
small-caps Font in small capital letters
initial Set to default value
inherit Inherit property from parent element

Return Value:



Example-1: 




<!DOCTYPE html>
<html>
 
<head>
    <title>DOM Style fontVariant Property </title>
</head>
 
<body>
    <center>
        <h1 style="color:green;width:40%;">
                GeeksForGeeks
       </h1>
        <h2>DOM Style fontVariant Property </h2>
 
        <p id="gfg">
            A computer science portal for geeks
        </p>
 
        <button type="button" onclick="geeks()">
            Submit
        </button>
 
        <script>
            function geeks() {
 
                //  Set fontVariant
                document.getElementById(
                        "gfg").style.fontVariant =
                    "small-caps";
            }
        </script>
    </center>
</body>
 
</html>

Output: 

Before Click on the button:

  

After Click on the button:

  

Example-2: 




<!DOCTYPE html>
<html>
 
<head>
    <title>DOM Style fontVariant Property </title>
</head>
 
<body>
    <center>
        <h1 style="color:green;width:40%;">
                GeeksForGeeks
            </h1>
        <h2>DOM Style fontVariant Property </h2>
       
        <p id="gfg">
          A computer science portal for geeks
      </p>
       
        <button type="button" onclick="geeks()">
            Submit
        </button>
 
        <script>
            function geeks() {
               
                // Set fontVariant
                document.getElementById(
                  "gfg").style.fontVariant =
                  "all-small-caps";
            }
        </script>
    </center>
</body>
 
</html>

Output: 

Before Click on the button:

  

After Click on the button:

  

Supported Browsers: The browser supported by DOM Style fontVariant property are listed below:


Article Tags :