HTML Dog
跳至导航

CSS 值:unset

声明清除关键字。如果属性是继承的,unset 将表现得像 inherit。如果属性不是继承的,unset 将表现得像 initial

示例


.clock {
    color: red;
    width: 300px;
}
.clock * {
    color: unset;
    width: unset;
}
/* boxes inside .clock inherit the red color (color is inherited) but width becomes auto (width is not inherited) */

浏览器支持

我可以使用 css-unset-value 吗? 来自 caniuse.com 关于 css-unset-value 功能在主要浏览器中的支持情况的数据。