This class accepts more than one value in tailwind CSS in which all the properties are covered in class form. It is the alternative to the CSS background-clip property. This property is used to define how to extend background (color or image) within an element.
Background Clip Classes:
- bg-clip-border: This class is used to set the background color spread over the whole division.
- bg-clip-padding: This class is used to set the background inside the border.
- bg-clip-content: This class is used to set the background color to the content only.
- bg-clip-text: This class is used to crop an element’s background to match the shape of the text. Useful for effects where you want a background image to be visible through the text.
Syntax:
<element class="bg-clip-{Clip type}">...</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
< span class="bg-clip-text text-lg text-transparent
bg-gradient-to-r
from-green-400 to-blue-500">
Background Clip Class
</ span >
</ b >
< div class = "mx-2 grid grid-cols-3 gap-2 bg-green-200 rounded-lg" >
< div class="bg-clip-border p-6 bg-green-600 border-dashed
border-4 border-green-300">
</ div >
< div class="bg-clip-padding p-6 bg-green-600 border-dashed
border-4 border-green-300">
</ div >
< div class="bg-clip-content p-6 bg-green-600 border-dashed
border-4 border-green-300">
</ div >
</ div >
</ body >
</ html >
|
Output:

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