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