With some help of CSS 3, we can shadow text on the website.
As usual, IE is not very generous.
h1 { text-shadow: 1px /* y-axis */ 1px /* x-axis */ 1px /* blur */ #999; /* color */ }
The values for blur and color is not necessary to specify.
Continue reading →