Skip to content

Instantly share code, notes, and snippets.

@SteveBarnett
Created June 10, 2015 07:19
Show Gist options
  • Save SteveBarnett/a781e10fdd91489e4e1b to your computer and use it in GitHub Desktop.
Save SteveBarnett/a781e10fdd91489e4e1b to your computer and use it in GitHub Desktop.
Progressively Enhanced CSS
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