Skip to content
Related Articles
Open in App
Not now

Related Articles

CSS | opacity() Function

Improve Article
Save Article
Like Article
  • Last Updated : 19 Aug, 2022
Improve Article
Save Article
Like Article

The opacity() function is an inbuilt function which is used to apply a filter to the image to set the transparency of the image. 

Syntax:

opacity( amount )

Parameters: This function accepts single parameter amount which holds the amount of transparency. The value of opacity is set in terms of number and percentage. The value 0% represents the complete transparent image and 100% represents the original image. 

Below example illustrates the opacity() function in CSS: 

Example: 

html




<!DOCTYPE html>
<html>
 
<head>
    <title>CSS opacity() Function</title>
     
    <style>
        h1 {
            color:green;
        }
        body {
            text-align:center;
        }
        .opacity_effect {
            filter: opacity(30%);
        }
    </style>
</head>
 
<body>
    <h1>GeeksforGeeks</h1>
     
    <h2>CSS opacity() function</h2>
     
    <img class="opacity_effect" src=
        alt="GeeksforGeeks logo">
</body>
 
</html>

Output:

  

Supported Browsers: The browsers supported by opacity() function are listed below:

  • Google Chrome 18 and above
  • Edge 12 and above
  • Internet Explorer not supported
  • Firefox 35 and above
  • Safari 6 and above
  • Opera 15 and above
My Personal Notes arrow_drop_up
Like Article
Save Article
Related Articles

Start Your Coding Journey Now!