使用unset
而不是重置所有属性
重置元素的属性时,不需要重置每个单独的属性:
button {
background: none;
border: none;
color: inherit;
font: inherit;
outline: none;
padding: 0;
}
你可以用all
简写來指定所有元素的属性。 将该值设置为unset
会将元素的属性更改为其初始值:
button {
all: unset;
}
注意: IE11不支持all
和unset
的簡寫。
当前内容版权归 AllThingsSmitty 或其关联方所有,如需对内容或内容相关联开源项目进行关注与资助,请访问 AllThingsSmitty .