CSS Properties and Values API 不能重复定义 一旦定义,就无法更新现有的注册属性 注册的属性在解析时也不会得到验证 ```css@property { } ``` ```js window.CSS.registerProperty({ name: '--my-color', syntax: '', // 能动画 inherits: false, initialValue: 'black',}); ```