Created
July 15, 2013 23:48
-
-
Save jwlms/6004556 to your computer and use it in GitHub Desktop.
media query nesting
This file contains hidden or 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
.svg #site-title a { // OK | |
@media( max-width: $w7 ) { | |
background: transparent url(images/flv-logo.svg) no-repeat 0 0; | |
} | |
} | |
.svg #site-title a { // no | |
@media( max-width: $w7 ) { | |
@media ( max-device-width: $ipad ) { | |
background: transparent url(images/flv-logo.svg) no-repeat 0 0; | |
} | |
} | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment