This class accepts lots of value in tailwind CSS in which all the properties are covered in class form. The bg-opacity is the class of an element that describes the transparency of the element. It is the alternative to the CSS Opacity / Transparency.
Background Opacity class:
- background-opacity-0: Control the opacity of an element’s background using the background-opacity-{amount} utilities.
Note: The number of the opacity can be changeable from 0 to 100 with the span of 5.
Syntax:
<element class="bg-{opacity}">...</element>
Example:
HTML
<!DOCTYPE html>
< head >
< link href =
rel = "stylesheet" >
</ head >
< body class = "text-center mx-4 space-y-2" >
< h1 class = "text-green-600 text-5xl font-bold" >
GeeksforGeeks
</ h1 >
< b >Tailwind CSS Background Opacity Class</ b >
< div class="mx-14 bg-green-200 grid grid-rows-4
grid-flow-col text-justify p-4">
< p class="bg-green-800
bg-opacity-100 p-2">
A Computer Science Portal for Geeks
</ p >
< p class="bg-green-800
bg-opacity-75 p-2">
A Computer Science Portal for Geeks
</ p >
< p class="bg-green-800
bg-opacity-50 p-2">
A Computer Science Portal for Geeks
</ p >
< p class="bg-green-800
bg-opacity-25 p-2">
A Computer Science Portal for Geeks
</ p >
< p class="bg-yellow-800
bg-opacity-100 p-2">
A Computer Science Portal for Geeks
</ p >
< p class="bg-yellow-800
bg-opacity-75 p-2">
A Computer Science Portal for Geeks
</ p >
< p class="bg-yellow-800
bg-opacity-50 p-2">
A Computer Science Portal for Geeks
</ p >
< p class="bg-yellow-800
bg-opacity-25 p-2">
A Computer Science Portal for Geeks
</ p >
< p class="bg-pink-800
bg-opacity-100 p-2">
A Computer Science Portal for Geeks
</ p >
< p class="bg-pink-800
bg-opacity-75 p-2">
A Computer Science Portal for Geeks
</ p >
< p class="bg-pink-800
bg-opacity-50 p-2">
A Computer Science Portal for Geeks
</ p >
< p class="bg-pink-800
bg-opacity-25 p-2">
A Computer Science Portal for Geeks
</ p >
</ div >
</ body >
</ html >
|
Output:

Background opacity class
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 :
23 Mar, 2022
Like Article
Save Article