Last active
June 15, 2022 14:37
-
-
Save luaysuarna/db59dd8495a4f6a8e9ebd892a00a24b9 to your computer and use it in GitHub Desktop.
CSS Media Queries
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 screen and (min-width: 992px) and (max-width: 1199px) { | |
} | |
@media screen and (min-width: 768px) and (max-width: 991px) { | |
} | |
@media screen and (max-width: 767px){ | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment