CSS3 Fading Line
by shriek
HTML
<div class="sexy_line"></div>
CSS
.sexy_line {
height: 3px;
background: white;
background: -webkit-gradient(linear, 0 0, 100% 0, from(rgba(255,255,255,0)), to(rgba(255,255,255,0)), color-stop(50%, white));
}