CSS 中,某些样式属性会自动从父元素传递(继承)给子元素,无需重复设置。
导航
“文本、字体、列表、可见性”
color
、font-size
、font-family
、line-height
、text-align
list-style
、list-style-type
visibility
、opacity
“盒子、背景、定位、尺寸”
width
、height
、margin
、padding
、border
background
、background-color
position
、top
、left
、z-index
如果想让不可继承的属性继承父级值,用:
.child {
property: inherit; /* 强制继承父元素的值 */
}
inherit
关键字。