Open In App
Related Articles

CSS fill Property

Improve Article
Improve
Save Article
Save
Like Article
Like

The fill property is a presentation attribute used to set the color of an SVG shape. 

Syntax:

fill: <paint>

Property Values:

  • paint: It is used to set the color of the fill property. This paint be defined using color names, hex, rgb or hsl values. The default value is black. It can also be used with patterns using the url() function. 

Example 1: This example illustrates the different color values of fill property. 

html




<!DOCTYPE html>
<html>
<head>
    <title>
        CSS | fill Property
    </title>
    <style>
        .opacity1 {
            /* using color names */
            fill: green;
        }
 
        .opacity2 {
            /* using hex values */
            fill: #ff0000;
        }
 
        .opacity3 {
            /* using rgb values */
            fill: rgb(0, 0, 128);
        }
 
        .opacity4 {
            /* using hsl values */
            fill: hsl(24, 100%, 60%);
        }
    </style>
</head>
 
<body>
    <h1 style="color: green">
        GeeksforGeeks
    </h1>
    <b>CSS | fill</b>
    <div class="container">
        <svg height="250px"
             width="600px"
             xmlns="http://www.w3.org/2000/svg"
             version="1.1">
            <circle class="opacity1" cx="100" cy="100" r="50" />
            <circle class="opacity2" cx="250" cy="100" r="50" />
            <circle class="opacity3" cx="400" cy="100" r="50" />
            <circle class="opacity4" cx="550" cy="100" r="50" />
        </svg>
    </div>
</body>
</html>


Output:

 fill-color 

Example 2: This example uses patterns for fill property. 

html




<!DOCTYPE html>
<html>
<head>
    <title>
        CSS | fill property
    </title>
    <style>
        .opacity1 {
            fill: url(#pattern1);
        }
 
        .opacity2 {
            fill: url(#pattern2);
        }
    </style>
</head>
 
<body>
    <h1 style="color: green">
        GeeksforGeeks
    </h1>
    <b>
        CSS | fill
    </b>
    <div class="container">
        <svg height="250px"
             width="600px"
             xmlns="http://www.w3.org/2000/svg"
             version="1.1">
            <defs>
                <pattern id="pattern1"
                         viewBox="0, 0, 10, 10"
                         width="10%" height="10%">
                    <circle r="10" />
                </pattern>
                <pattern id="pattern2"
                         viewBox="0, 0, 10, 10"
                         width="10%" height="10%">
                    <rect height="5"
                          width="5"
                          fill="green" />
                </pattern>
            </defs>
 
            <circle class="opacity1" cx="100" cy="100" r="50" />
            <circle class="opacity2" cx="250" cy="100" r="50" />
        </svg>
    </div>
</body>
</html>


Output:

 fill-pattern

Supported Browsers: The browsers supported by fill property are listed below:

  • Chrome
  • Firefox
  • Safari
  • Opera
  • Internet Explorer 9

Whether you're preparing for your first job interview or aiming to upskill in this ever-evolving tech landscape, GeeksforGeeks Courses are your key to success. We provide top-quality content at affordable prices, all geared towards accelerating your growth in a time-bound manner. Join the millions we've already empowered, and we're here to do the same for you. Don't miss out - check it out now!

Last Updated : 08 Jun, 2023
Like Article
Save Article
Previous
Next
Similar Reads
Complete Tutorials