Skip to content

Instantly share code, notes, and snippets.

@SteveBarnett
Last active August 29, 2015 14:04
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save SteveBarnett/b968006c107c15c174d2 to your computer and use it in GitHub Desktop.
Save SteveBarnett/b968006c107c15c174d2 to your computer and use it in GitHub Desktop.
Respond-min for less
[role="banner"] {
text-align: center;
.respond-min(50em, {
text-align: left;
});
}
.respond-min(@mq; @rules) {
@media screen and (min-width: @mq) {
@rules();
}
.lt-ie9 & {
@rules();
}
}
<!--[if lt IE 9]> <html class="no-js lt-ie9"> <![endif]-->
<!--[if IE 9|!(IE)]><!--> <html class="no-js"> <!--<![endif]-->
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment