Skip to content

Instantly share code, notes, and snippets.

View richardsession's full-sized avatar
🏠
Looking for new projects

Richard Session richardsession

🏠
Looking for new projects
View GitHub Profile
@richardsession
richardsession / 0_selector_hacks.scss
Created December 19, 2011 21:22 — 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"); }
}