Skip to content

Instantly share code, notes, and snippets.

View derekwheee's full-sized avatar

Derek Wheelden derekwheee

View GitHub Profile
@derekwheee
derekwheee / heading-side-lines
Created April 18, 2014 15:00
Lines on Sides
// This puts a 1px line on either side of a heading
// ------- Like This -------
.lines-on-sides {
display: table;
text-align: center;
white-space: nowrap;
&:after,
&:before {
content: '';
@derekwheee
derekwheee / svg-png-fallback
Last active September 8, 2015 16:46
Inline SVG with PNG fallback
<img src="/path/to/image.svg" onerror="this.onerror=null; this.src='/path/to/image.png'">