Created
December 28, 2022 01:12
-
-
Save yeungon/2ab583141dcfea9c68af21b7ac501bab to your computer and use it in GitHub Desktop.
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
/* nếu screen <= 1440px */ | |
@media only screen and (max-width: 1440px) { | |
} | |
/* nếu screen <= 1366px */ | |
@media only screen and (max-width: 1366px) { | |
} | |
/*/* Ipad ngang(1024 x 768) <= 1024px */ | |
@media screen and (max-width: 1024px) { | |
} | |
/*Ipad dọc(768 x 1024)*/ | |
@media screen and (max-width: 768px) { | |
} | |
/*Iphone 12/13 PRO*/ | |
@media screen and (max-width: 428px) { | |
} | |
/*Iphone 6/7/8 PLUS*/ | |
@media screen and (max-width: 414px) { | |
} | |
/*Iphone 6/7/8*/ | |
@media screen and (max-width: 375px) { | |
} | |
/*Iphone(480 x 640)*/ | |
/* iPhone 5s */ | |
@media screen and (max-width: 320px) { | |
} | |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment