text-shadow css property value actually copy the same text with original font and position it relative to the original text.it will create the effect of shadowness.
Following example will explain it.
h1
{
//PROPERTY //BOTTOM //RIGHT //DUPLICATED TEXT COLOR
text-shadow : 2px 2px #0000ff;
}
|