![](https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEiyDNfD2sOSd5U1yaYU0CpwkwCXW0tq7mqhTq5qDgC1asWls1hk5kk4bp1yuWHXQ1uFW1ztU-6Ksbpylg6tyqfvJ06PUlTWhT59ELyjweDYHUjRDH-cE_a7ZObOhAS6AqvbAdHRa_OVPK4/s1600/css.png)
<h1 class="shadow">Hubkart</h1>
After Creating div, Go to stylesheet where you have to code for the class :
.shadow
{
text-shadow: 1px 1px 1px #000;
}
The first Value Specifies the X-coordinate and the second value specifies the Y-coordinate.
The third value specifies the blur radius and the last value specifies the color of the shadow.
Separating it by comma you can apply multiple text-shadows.
.shadow {
text-shadow: 0 0 3px #0B5394;
}
}
This example indicate text-shadow with neon glow.
Post a Comment