css屬性的可繼承性

weixin_30924079發表於2020-04-04

 

不可繼承的:display、margin、border、padding、background、height、min-height、max- height、width、min-width、max-width、overflow、position、left、right、top、 bottom、z-index、float、clear、table-layout、vertical-align、page-break-after、 page-bread-before和unicode-bidi。

所有元素可繼承:visibility和cursor。
內聯元素可繼承:letter-spacing、word-spacing、white-space、line-height、color、font、 font-family、font-size、font-style、font-variant、font-weight、text- decoration、text-transform、direction。
塊狀元素可繼承:text-indent和text-align。
列表元素可繼承:list-style、list-style-type、list-style-position、list-style-image。
表格元素可繼承:border-collapse。
相反,可繼承就是父節點設定了這個屬性後,子節點就可以繼承他的屬性,
這裡要明白什麼是塊狀元素,內聯元素。 塊狀元素,是其屬性display的預設值為block的標籤,也就是div,p,h1等等,但不代表這些標籤一定是塊狀元素,當程式設計師把他的display屬性改變,就不是塊狀元素

轉載於:https://www.cnblogs.com/moriah/p/6238253.html

相關文章