Skip to content

Instantly share code, notes, and snippets.

@LeaVerou
Created June 9, 2022 12:13
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save LeaVerou/f62e1c69c1902fc6544a201a6a1ac768 to your computer and use it in GitHub Desktop.
Save LeaVerou/f62e1c69c1902fc6544a201a6a1ac768 to your computer and use it in GitHub Desktop.
Invalid custom property values
/**
* Invalid custom property values
*/
@property --foo {
syntax: "red | orange";
initial-value: red;
inherits: false;
}
html { --foo: green }
body {
--foo: 42deg;
background: linear-gradient(pink 1em, transparent 0) var(--foo, yellow);
}
<!-- content to be placed inside <body>…</body> -->
// alert('Hello world!');
{"view":"split","fontsize":"100","seethrough":"","prefixfree":"1","page":"css"}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment