Skip to content

Instantly share code, notes, and snippets.

@tpryan
Created March 20, 2012 15:21
Show Gist options
  • Save tpryan/2136922 to your computer and use it in GitHub Desktop.
Save tpryan/2136922 to your computer and use it in GitHub Desktop.
CSS Variables Draft Comments
p { background-color: red; }
p { background-color: "Behold I am not a valid color at ALL!!!!" }
:root { data-not-a-color: "Behold I am not a valid color at ALL!!!!" }
p { background-color: red; }
p { background-color: data(not-a-color); }
h1 { background-color: data(header-color); }
:root {
data-header-color: #06c;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment