Skip to content

Instantly share code, notes, and snippets.

@Gioni06
Created December 3, 2019 10:00
Show Gist options
  • Save Gioni06/9311a0784f4c49f91fdf2b1c1e7a4dc8 to your computer and use it in GitHub Desktop.
Save Gioni06/9311a0784f4c49f91fdf2b1c1e7a4dc8 to your computer and use it in GitHub Desktop.
CSS Media Query
@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