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