Created
March 25, 2017 02:21
-
-
Save husain100b/713d6c143c0ef095bbad333e851497e1 to your computer and use it in GitHub Desktop.
Responsive Layout Query
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
/* Desktop layout :992px. */ | |
@media (min-width: 992px) and (max-width: 1200px) { | |
} | |
/* Tablet layout :768px */ | |
@media (min-width: 768px) and (max-width: 991px) { | |
} | |
/* Small mobile layout :320px */ | |
@media (max-width: 767px) { | |
} | |
/* Large Mobile layout:480px */ | |
@media only screen and (min-width: 480px) and (max-width: 767px) { | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment