css有哪些样式具有继承性,哪些不具有继承性?
请详细列举
请详细列举
2018-05-25
具有继承: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
不可继承:display \ margin \ border \ padding \ background \ height \ min-height \ max-height \ width \ min-width \ max-width \ overflow \ position \ left \ right \ top \ bottom \ float \ clear \ table-layout \ vertical-align
大多数的样式都会继承,像字体相关的[font-size/line-height/font-weight]基本都要继承,跟盒模型相关的[margin/padding/border]基本就不继承.
举报