CSS3 text-shadow

by Wang Peng

HTML

<div class="text-shadow">
    Don't be same, be better.
</div>

CSS

.text-shadow {
    font-size: 60px;
    color: #fff;
    text-shadow: red 2px 2px 2px;
}