Created
September 11, 2012 09:04
-
-
Save kenoir/3697080 to your computer and use it in GitHub Desktop.
Trying our some media selectors for screen width
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
@media all and (max-width: 320px){ | |
article.intro { | |
width: 100%; | |
} | |
section { | |
width: 100%; | |
} | |
} | |
@media all and (max-width: 640px) and (min-width: 321px){ | |
article.intro{ | |
float:left; | |
width:50%; | |
} | |
section{ | |
float:left; | |
width:50%; | |
} | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment