HTML Dog
跳至导航

CSS 值:inherit

显式继承关键字。等效属性在元素父级上的计算值

示例


p { color: red }
h1 { color: lime }
ul { color: yellow }
a { color: inherit }
/* the color of links in paragraphs will be red, in headings will be lime, and in lists will be yellow */

浏览器支持