Skip to content

Instantly share code, notes, and snippets.

@maagmirror
Created March 30, 2022 18:30
Show Gist options
  • Save maagmirror/86ce7cb99801873eaa9d2d4759299bef to your computer and use it in GitHub Desktop.
Save maagmirror/86ce7cb99801873eaa9d2d4759299bef to your computer and use it in GitHub Desktop.
#largescreen {
display: block;
}
#smallscreen {
display: none;
}
@media (max-width: 640px) {
#largescreen {
display: none;
}
#smallscreen {
display: block;
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment