Text Shadow Using HTML CSS
Here we Describe How to put Text shadow in 3 Axis.
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>
#txt {
text-shadow: 3px 3px 3px rgba(58,149,206,1);
}
</style>
</head>
<body>
<div id="txt">TEXT SHADOW</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>
#txt {
text-shadow: 3px 3px 3px rgba(58,149,206,1);
}
</style>
</head>
<body>
<div id="txt">TEXT SHADOW</div>
</body>
</html>
Comments
Post a Comment