Created
April 29, 2017 03:53
-
-
Save zenaul/f02e620ecb38be30af829dadfde2dedf to your computer and use it in GitHub Desktop.
Responsive 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
/* Normal desktop :992px. */ | |
@media (min-width: 992px) and (max-width: 1200px) { | |
} | |
/* Tablet desktop :768px. */ | |
@media (min-width: 768px) and (max-width: 991px) { | |
} | |
/* small mobile :320px. */ | |
@media (max-width: 767px) { | |
.container {width:300px} | |
} | |
/* Large Mobile :480px. */ | |
@media only screen and (min-width: 480px) and (max-width: 767px) { | |
.container {width:450px} | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment