Last active
June 29, 2018 10:44
-
-
Save robnyman/1705528 to your computer and use it in GitHub Desktop.
Fullscreen API, CSS pseudo-class
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
html:-moz-full-screen { | |
background: red; | |
} | |
html:-webkit-full-screen { | |
background: red; | |
} | |
html:-ms-fullscreen { | |
background: red; | |
width: 100%; /* needed to center contents in IE */ | |
} | |
html:fullscreen { | |
background: red; | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment