Skip to content

Instantly share code, notes, and snippets.

@Schepp
Created February 18, 2013 19:58
Show Gist options
  • Save Schepp/4980162 to your computer and use it in GitHub Desktop.
Save Schepp/4980162 to your computer and use it in GitHub Desktop.
CSS Variables test
/**
* CSS Variables test
*/
background: red;
-webkit-var-foo: green;
-moz-var-foo: green;
-o-var-foo: green;
var-foo: green;
background: -webkit-var(foo);
background: -moz-var(foo);
background: -o-var(foo);
background: var(foo);
<!-- content to be placed inside <body>…</body> -->
// alert('Hello world!');
{"view":"split","fontsize":"100","seethrough":"","prefixfree":"1","page":"all"}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment