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