标签: html css
<div> <a href="#">content</a> </div>
div {color:red}
为什么它不继承父对象的颜色并接受默认颜色?
content的颜色是蓝色,而不是红色
content
答案 0 :(得分:0)
a { color: inherit; }
您需要告诉它继承它。