HTML CSS TEXT SHADOW
Here we Describe How to put Text shadow in 3 Axis.
<html>
<head>
<title>Table Designs </title>
<style>
#shd {
text-shadow: 5px 5px 5px rgba(185,100,100,0.9);
color: green;
}
</style>
</head>
<body>
<div id="shd">Hyper Text Markup Language</div>
</body>
</html>
- X-axis
- Y-axis
- Z-axis
because every box or text have 3 axis. X, Y and Z and after we put RGBA.
- R :- R stands for Red Color
- G :- G stands for Green
- B :- B stands for Blue
- A :- A stands for alfa or opacity. It's value stands between 0 to 1.
rgba values defines shadow color.
<html>
<head>
<title>Table Designs </title>
<style>
#shd {
text-shadow: 5px 5px 5px rgba(185,100,100,0.9);
color: green;
}
</style>
</head>
<body>
<div id="shd">Hyper Text Markup Language</div>
</body>
</html>
Comments
Post a Comment