Tags
csswebapi
Created
Oct 25, 2019 2:35 AM
不能重复定义
一旦定义,就无法更新现有的注册属性
注册的属性在解析时也不会得到验证
```css
@property
<custom-property-name>
{
<declaration-list>
}
```
```js
window.CSS.registerProperty({
name: '--my-color',
syntax: '
<color>
', // 能动画
inherits: false,
initialValue
: 'black',
});
```