How to create gradient shadow using CSS?
As the web continues to evolve, making a beautiful UI is one of the most important tasks to increase customer engagement on your website. One way to improve the appearance of your front-end is to apply gradient shadows in CSS. The two most important methods of applying gradient shading are linear gradients and radial gradients.
Gradient shadows can be used to draw user attention to specific information, apply hover or focus effects, or give a website a Web3 look and feel. In this tutorial, we'll analyze two gradient shades with practical examples.
We will use two important CSS concepts to achieve the effect, one is the filter attribute and the other is the ::after pseudo-class. The pseudo class will be used to create a fake background, while the filter attribute will be used to apply a blur effect to the surrounding background.
Method 1: Linear Gradient Shadow
In this example we will see how to apply a linear gradient shadow effect on a card.
grammar
.classname::after{ background: linear-gradient(direction, color1, [color2, color3.......]); inset: -0.5rem; filter: blur(25px); ....... }
Among them, classname refers to the class assigned to a given label, and the direction attribute indicates which direction the linear arrangement of colors should be arranged. This can be provided as "deg", or using a pre-designed string (e.g. "to right").
algorithm
Step one: Create the HTML document skeleton of the website and specify class names for labels that require gradient effects.
Step 2: Use the ::after pseudo-class with the same class name as the class name assigned to the tag.
Step 3: Use the Linear−gradient() CSS function to fill the background of the pseudo class with the desired gradient color.
Step 4: To ensure that the pseudo-class is never superimposed on the original class, add a z-index attribute to the pseudo-class with a lower value than the value assigned to the original class.
Step 5: Add a little inset attribute to the pseudo class so that the original class does not completely cover the background.
Step 6: Finally apply the gradient shadow effect and apply blur to the pseudo component.
Example
<!DOCTYPE html> <html lang="en"> <head> <meta charset="UTF-8"> <meta http-equiv="X-UA-Compatible" content="IE=edge"> <meta name="viewport" content="width=device-width, initial-scale=1.0"> <title>Linear Gradient Shadow</title> </head> <body> <div class="gradient"> <h1 id="Welcome-to-Tutorials-Point">Welcome to Tutorials Point</h1> </div> <style> *{ margin: 0px; padding: 0px; } .gradient{ margin-top: 20px; margin-left: 5%; width: 90%; position: relative; border-radius: 10px; padding-top: 15px; padding-bottom: 15px; padding-right: 10px; padding-left: 10px; background-color: black; } h1{ color: white; text-align: center; } .gradient::after{ content: ""; position: absolute; z-index: -100; background: linear-gradient(to right, blue, cyan,lime, green, yellow, orange, red); inset: -0.5rem; filter: blur(25px); } </style> </body> </html>
Method 2: Radial Gradient Shadow
In this example, we will see how to apply the Radial Gradient Shadow effect to the same card effect and observe the changes.
grammar
.classname::after{ background: radial-gradient(color1, [color2, color3.......]); inset: -0.5rem; filter: blur(25px); ....... }
algorithm
Step one: Create the HTML document skeleton of the website and specify class names for labels that require gradient effects.
Step 2: Use the ::after pseudo-class with the same class name as the class name assigned to the tag.
Step 3: Use the Radial−gradient() CSS function to fill the background of the pseudo class with the desired gradient color.
Step 4: To ensure that the pseudo-class is never superimposed on the original class, add a z-index attribute to the pseudo-class with a lower value than the value assigned to the original class.
Step 5: Add a little inset attribute to the pseudo class so that the original class does not completely cover the background.
Step 6: Finally apply the gradient shadow effect and apply blur to the pseudo component.
Example
<!DOCTYPE html> <html lang="en"> <head> <meta charset="UTF-8"> <meta http-equiv="X-UA-Compatible" content="IE=edge"> <meta name="viewport" content="width=device-width, initial-scale=1.0"> <title>Radial Gradient Shadow</title> </head> <body> <div class="gradient"> <h1 id="Welcome-to-Tutorials-Point">Welcome to Tutorials Point</h1> </div> <style> *{ margin: 0px; padding: 0px; } .gradient{ margin-top: 20px; margin-left: 5%; width: 90%; position: relative; padding-top: 50px; padding-bottom: 50px; border-radius: 10px; padding-right: 10px; padding-left: 10px; background-color: black; } h1{ color: white; text-align: center; } .gradient::after{ content: ""; position: absolute; z-index: -100; background: radial-gradient(yellow, red, blue); inset: -1rem; filter: blur(10px); } </style> </body> </html>
in conclusion
The radial gradient color originates from the center of the label, as you can see from the example above, the yellow is completely overlaid by the black background, while some traces of red are found at the midpoint of the side of the card. On the other hand, in a linear gradient, no overlay is observed as it distributes all colors evenly along all edges according to the provided direction.
We can also adjust the values of inset and Blur to increase or decrease the area covered by the gradient effect. More negative values make the gradient more prominent, while blur values make the effect more spread out on the sides.
The above is the detailed content of How to create gradient shadow using CSS?. For more information, please follow other related articles on the PHP Chinese website!

Hot AI Tools

Undresser.AI Undress
AI-powered app for creating realistic nude photos

AI Clothes Remover
Online AI tool for removing clothes from photos.

Undress AI Tool
Undress images for free

Clothoff.io
AI clothes remover

AI Hentai Generator
Generate AI Hentai for free.

Hot Article

Hot Tools

Notepad++7.3.1
Easy-to-use and free code editor

SublimeText3 Chinese version
Chinese version, very easy to use

Zend Studio 13.0.1
Powerful PHP integrated development environment

Dreamweaver CS6
Visual web development tools

SublimeText3 Mac version
God-level code editing software (SublimeText3)

Hot Topics



There are several ways to insert images in Bootstrap: insert images directly, using the HTML img tag. With the Bootstrap image component, you can provide responsive images and more styles. Set the image size, use the img-fluid class to make the image adaptable. Set the border, using the img-bordered class. Set the rounded corners and use the img-rounded class. Set the shadow, use the shadow class. Resize and position the image, using CSS style. Using the background image, use the background-image CSS property.

To set up the Bootstrap framework, you need to follow these steps: 1. Reference the Bootstrap file via CDN; 2. Download and host the file on your own server; 3. Include the Bootstrap file in HTML; 4. Compile Sass/Less as needed; 5. Import a custom file (optional). Once setup is complete, you can use Bootstrap's grid systems, components, and styles to create responsive websites and applications.

How to use the Bootstrap button? Introduce Bootstrap CSS to create button elements and add Bootstrap button class to add button text

There are two ways to create a Bootstrap split line: using the tag, which creates a horizontal split line. Use the CSS border property to create custom style split lines.

To adjust the size of elements in Bootstrap, you can use the dimension class, which includes: adjusting width: .col-, .w-, .mw-adjust height: .h-, .min-h-, .max-h-

Answer: You can use the date picker component of Bootstrap to view dates in the page. Steps: Introduce the Bootstrap framework. Create a date selector input box in HTML. Bootstrap will automatically add styles to the selector. Use JavaScript to get the selected date.

HTML defines the web structure, CSS is responsible for style and layout, and JavaScript gives dynamic interaction. The three perform their duties in web development and jointly build a colorful website.

Using Bootstrap in Vue.js is divided into five steps: Install Bootstrap. Import Bootstrap in main.js. Use the Bootstrap component directly in the template. Optional: Custom style. Optional: Use plug-ins.
