您的位置:首页 > Web前端 > CSS

css默认被后代inherite的属性列表

2017-07-31 10:26 483 查看
css中的属性大部分都可以被继承,但是也有众多不能被继承,比如display, position,,left,right,top,bottom,float,width,border-color,border-style,text-decoration等不被继承。下面列出能被继承的属性。详细见下面的列表: http://www.w3.org/TR/CSS21/propidx.html
注意:虽然比如margin,position等默认情况下并不继承,但是如果有必要的话,你可以显式指定我们希望从父元素那里继承这个属性。

比如:

p {margin: inherit; padding: inherit}


上面这段代码就指定p元素继承他的父元素对应的margin和padding.

 

azimuth

border-collapse

border-spacing

caption-side

color

cursor

direction

elevation

empty-cells

font-family

font-size

font-style,font-weight,font,

letter-spacing,

line-height

list-style-image

list-style-position

list-style

list-style-type

orphans

quotes,

richness

speak-header

text-align

text-indent

text-transformation

visibility,

white-space, z-index

 
内容来自用户分享和网络整理,不保证内容的准确性,如有侵权内容,可联系管理员处理 点击这里给我发消息
标签: