CSS3 Text stroke

Adding An Outline To Your Text Using the CSS3 text-stroke Property

Css

.stroke {
    -webkit-text-stroke: 2px #000;
    font-size:50px;
    color: #c00;
}
.transparent {     
    -webkit-text-fill-color: transparent;
}

Html

<p class='stroke'>Text stroke example</p>
<p class='stroke transparent'>Text stroke example</p>

view demo

Related Posts

CSS3 Outline, CSS3 Box Sizing, CSS3 calc(), CSS3 Columns, CSS3 Box shadow, CSS3 Text shadow