HTML Dog
跳至导航

CSS 值:initial

属性重置关键字。属性的初始值,移除所有通常会继承的值。

示例


body { font-size: 0.8em }
p { color: red }
strong {
    font-size: initial;
    color: initial;
}
/* strong elements, even those inside paragraphs, will remain black and normal sized. */
/* The body's font-size and p's color will not be inherited by strong, as they normally would */

浏览器支持

Can I Use css-initial-value? 来自 caniuse.com 的关于 css-initial-value 特性在各大浏览器中支持情况的数据。