CSS: Make a shadow with box-shadow and text-shadow!
With the CSS property "box-shadow" you can easily add shadows to an HTML element: All you need, besides the color, is the size and both the vertical and horizontal position. So you can position the shadow only downwards, without a shift to the right or left!The code for a gray shadow with only a slight offset looks like this:box-shadow:1px 1px 5px #333333;The first value stands for a horizontal offset to the right or left, the second value for ... Read more...