标签:开头 color line 处理 情况 weight lin ora 层叠
一、层叠性
1、含义
多种css样式叠加,浏览器处理冲突的能力。
2、原则
1》一般情况下,若出现冲突,会按照css的书写顺序,以最后的样式为准
2》样式不冲突,就不会层叠
二、css的继承性
1、在浏览器的样式栏显示的是inherited from xxx
2、可以继承的属性:1》文本颜色(color:) 2》以font-开头的属性(font-family font-size font-weight)3》以line-开头的(line-height ) 4》以text-开头的属性(text-decorarion text-shadow)
三、css优先级
1、优先级最高
div{
color:red !important;
}
2、行内样式>id选择器>class选择器>标签选择器
四、css权重
继承最低
选中中id个数、class个数、标签个数、位置
标签:开头 color line 处理 情况 weight lin ora 层叠
原文地址:https://www.cnblogs.com/dhrwawa/p/10494477.html