Last active
October 8, 2015 05:28
-
-
Save nickawalsh/3284541 to your computer and use it in GitHub Desktop.
Serve IE Responsive Desktop Version
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
=respond-to($value, $query: min-width, $ie: false) | |
@media ($query: $value) | |
@content | |
@if $ie | |
.ie & | |
@content |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
// Sample Usage | |
.l-sidebar | |
width: 100% | |
+respond-to(40em, $ie: true) | |
width: 50% |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<!doctype html> | |
<!--[if lte IE 8]><html lang="en" class="ie"><![endif]--> | |
<!--[if gt IE 8]><!--> | |
<html lang="en"> | |
<!--<![endif]--> | |
</html> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment