Created
December 3, 2019 10:00
-
-
Save Gioni06/9311a0784f4c49f91fdf2b1c1e7a4dc8 to your computer and use it in GitHub Desktop.
CSS Media 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
@media screen and (max-width: 480px) { | |
.hidden-mobile { | |
display: none!important; | |
visibility: hidden!important; | |
opacity: 0!important; | |
} | |
} | |
@media screen and (min-width: 481px) { | |
.hidden-desktop { | |
display: none!important; | |
visibility: hidden!important; | |
opacity: 0!important; | |
} | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment