Since July 2024, this feature works across the latest devices and browser versions. This feature might not work in older devices or browsers.
The CSS.registerProperty() static method registers custom properties, allowing for property type checking, default values, and properties that do or do not inherit their value.
Registering a custom property allows you to tell the browser how the custom property should behave; what types are allowed, whether the custom property inherits its value, and what the default value of the custom property is.
CSS.registerProperty(propertyDefinition)
propertyDefinitionAn object containing the following properties:
nameA string representing the name of the property being defined.
syntax OptionalA string representing the expected syntax of the defined property. Defaults to "*".
inheritsA boolean value defining whether the defined property should be inherited (true), or not (false). Defaults to false.
initialValue OptionalA string representing the initial value of the defined property.
undefined.
InvalidModificationError DOMException
The given name has already been registered.
SyntaxError DOMException
The given name isn't a valid custom property name (starts with two dashes, e.g., --foo).
TypeErrorThe required name and/or inherits dictionary members were not provided.
The following will register a custom property, --my-color, using registerProperty(), as a color, give it a default value, and have it not inherit its value:
window.CSS.registerProperty({
name: "--my-color",
syntax: "<color>",
inherits: false,
initialValue: "#c0ffee",
});
In this example, the custom property --my-color has been registered using the syntax <color>. We can now use that property to transition a gradient on hover or focus. Notice that with the registered property the transition works, but that it doesn't with the unregistered property!
.registered {
--my-color: #c0ffee;
background-image: linear-gradient(to right, white, var(--my-color));
transition: --my-color 1s ease-in-out;
}
.registered:hover,
.registered:focus {
--my-color: #b4d455;
}
.unregistered {
--unregistered: #c0ffee;
background-image: linear-gradient(to right, white, var(--unregistered));
transition: --unregistered 1s ease-in-out;
}
.unregistered:hover,
.unregistered:focus {
--unregistered: #b4d455;
}
button {
font-size: 3vw;
}
We can add these styles to some buttons:
<button class="registered">Background Registered</button> <button class="unregistered">Background Not Registered</button>
| Desktop | Mobile | |||||||||||
|---|---|---|---|---|---|---|---|---|---|---|---|---|
| Chrome | Edge | Firefox | Opera | Safari | Chrome Android | Firefox for Android | Opera Android | Safari on IOS | Samsung Internet | WebView Android | WebView on iOS | |
registerProperty_static |
78 | 79 | 128 | 65 | 16.4 | 78 | 128 | 56 | 16.4 | 12.0 | 78 | 16.4 |
CSSCSS.supports()CSS.escape()@property
© 2005–2025 MDN contributors.
Licensed under the Creative Commons Attribution-ShareAlike License v2.5 or later.
https://developer.mozilla.org/en-US/docs/Web/API/CSS/registerProperty_static