First Create a div :
<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 {
<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