Skip to content

Instantly share code, notes, and snippets.

@procload
Created October 25, 2013 19:49
Show Gist options
  • Save procload/7160808 to your computer and use it in GitHub Desktop.
Save procload/7160808 to your computer and use it in GitHub Desktop.
@mixin respond-to($viewport-width, $ie-version: 'lt-ie9') {
@media only screen and (min-width: $viewport-width) {
@content;
}
@if $ie-version == 'lt-ie9' {
html.lt-ie9 & { // Using Paul Irish's conditional comments
@content;
}
}
@else if $ie-version == 'lt-ie8' {
html.lt-ie8 & { // Using Paul Irish's conditional comments
@content;
}
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment