Created
June 3, 2017 03:32
-
-
Save lizardking8610/3adf0ecfcdea02b7e6851fa29f7d6529 to your computer and use it in GitHub Desktop.
Mobile Hide and Mobile Show
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
| .mobile-hide { | |
| visibility: hidden; | |
| clip: rect(0px, 0px, 0px, 0px); | |
| position: absolute; | |
| display: none; | |
| } | |
| @media only screen and (min-width: 800px) { | |
| .mobile-hide { | |
| visibility: visible; | |
| position: relative; | |
| display: inherit; | |
| } | |
| .mobile-show { | |
| visibility: hidden; | |
| clip: rect(0px, 0px, 0px, 0px); | |
| position: absolute; | |
| } | |
| } |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment