inherit
收藏:0
阅读:143
CSS inherit 关键字
实例
设置 <span> 元素的文本颜色为蓝色,那些 class="extra" 的元素除外:
span
{
color: blue;
}
.extra span
{
color: inherit;
}
{
color: blue;
}
.extra span
{
color: inherit;
}
浏览器支持
所有主流浏览器都支持 inherit 关键字。
IE7 及其支持的版本不支持 inherit 关键字。IE8 要求有一个 !DOCTYPE。
定义和用法
inherit 关键字指定一个属性应从父元素继承它的值。
inherit 关键字可用于任何 HTML 元素上的任何 CSS 属性。
版本: | CSS3 |
---|---|
JavaScript 语法: | object.style.property="inherit" |
CSS 语法
property: inherit;
相关文章
CSS initial 关键字:initial 关键字