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) */
