box and text shadow

Box Shadow and Text Shadow


well add box shadow like

box-shadow : offset-x offset-y blur-radius spread-radius color;

ex-
box-shadow: -7px -5px 10px 34px green;

the values can also be -ve values.

we can similarly add text shadows

text-shadow: offset-x offset-y blur-radius;
 text-shadow: -3px -2px 2px white;





Comments