Skip to content

Instantly share code, notes, and snippets.

@piatra
Created June 20, 2013 11:17
Show Gist options
  • Save piatra/5821952 to your computer and use it in GitHub Desktop.
Save piatra/5821952 to your computer and use it in GitHub Desktop.
CSS Variables test
body {
/**
* CSS Variables test
*/
background: red;
-webkit-var-foo: purple;
-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);
}
<label class="topcoat-checkbox-label topcoat-checkbox-label--left" for="mean_frame_time (ms)"><input type="checkbox" name="mean_frame_time (ms)" checked="checked" id="mean_frame_time (ms)">mean_frame_time (ms)</label>
{"view":"split","fontsize":"100","seethrough":"","prefixfree":"1","page":"html"}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment