Skip to content

Instantly share code, notes, and snippets.

View rob-ot-dot-be's full-sized avatar

Rob De Vries rob-ot-dot-be

View GitHub Profile
@rob-ot-dot-be
rob-ot-dot-be / 0_selector_hacks.scss
Created December 23, 2011 13:57 — forked from chriseppstein/0_selector_hacks.scss
This gist demonstrates some uses of the new sass feature: Passing content blocks to mixins.
@mixin ie6 { * html & { @content } }
#logo {
background-image: url("/images/logo.png");
@include ie6 { background-image: url("/images/logo.gif"); }
}