Created
June 10, 2015 07:19
-
-
Save SteveBarnett/a781e10fdd91489e4e1b to your computer and use it in GitHub Desktop.
Progressively Enhanced CSS
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
body { | |
font-size: 2em; | |
/* all browsers apply this */ | |
font-size: 7vw; | |
/* | |
browsers that understand vw apply this rule. | |
browsers that don't understand vw ignore it (and get 2em) | |
*/ | |
background-color: rgb(6,6,6); | |
/* all browsers apply this */ | |
background-color: rgba(0,0,0,0.8); | |
/* | |
browsers that understand rgba apply this rule. | |
browsers that don't understand rgba ignore it (and get 666) | |
*/ | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment