We can use the "text-shadow" property provided by CSS to apply a shadow effect on text elements. The "text-shadow" property accepts a list of values representing the shadow's X and Y offset relative to the element, the shadow's blur radius, and the shadow's color. The values are listed in the syntax below -
text-shadow: offset_y offset_x blur-radius color
The following is a list of values and their meanings -
Offset-x − It represents the distance of the shadow from the element in the horizontal direction
Offset-y − It represents the distance of the shadow from the element in the vertical direction
Blur Radius − It represents the opacity of the shadow
Color − It represents the color of the shadow
In this example we will apply a shadow effect on an "h3" element and give the shadow a y offset as well as a red color
<!DOCTYPE html> <html lang="en"> <head> <title>How to Apply Shadow Effect on Text Using CSS?</title> <style> h3 { text-shadow: 0 15px 0 red; } </style> </head> <body> <h3>How to Apply Shadow Effect on Text Using CSS?</h3> </body> </html>
In this example, we will apply a shadow effect on an "h3" element and give the shadow a y offset, x offset, transparency, and green color.
<!DOCTYPE html> <html lang="en"> <head> <title>How to Apply Shadow Effect on Text Using CSS?</title> <style> h3 { text-shadow: 10px 15px 5px green; } </style> </head> <body> <h3>How to Apply Shadow Effect on Text Using CSS?</h3> </body> </html>
In this article, we learned about the "text-shadow" property and applied shadow effects to text elements using CSS, demonstrated through 2 different examples. In the first example, we applied a vertical shadow effect with the color "red", while in the second example we applied a vertical and a horizontal shadow effect with the color "green" and a blur radius of 5px .
The above is the detailed content of How to apply shadow effect on text using CSS?. For more information, please follow other related articles on the PHP Chinese website!