Skip to content

Instantly share code, notes, and snippets.

View Louishancquart's full-sized avatar

Hancquart Louis Louishancquart

View GitHub Profile
@tylergaw
tylergaw / dabblet.css
Created April 18, 2012 22:23
Centered Vertical line with CSS Gradient
/**
* Centered Vertical line with CSS Gradient
*/
div {
background: #fff;
background: linear-gradient(180deg, transparent, #353535, transparent);
background-position: 50%;
background-repeat: repeat-y;
background-size: 1px auto;
}