CSS样式的继承与覆盖

2017-02-11  本文已影响0人  杨慧莉

样式的继承

定义:父元素设置了某属性,子元素也会有该属性

下面是会被继承的CSS样式属性:

azimuth, border-collapse, border-spacing,
caption-side, color, cursor, direction, elevation,
empty-cells, font-family, font-size, font-style,
font-variant, font-weight, font, letter-spacing,
line-height, list-style-image, list-style-position,
list-style-type, list-style, orphans, pitch-range,
pitch, quotes, richness, speak-header, speaknumeral,
speak-punctuation, speak, speechrate,
stress, text-align, text-indent, texttransform,
visibility, voice-family, volume, whitespace,
widows, word-spacing

文本相关属性:

font-family, font-size, font-style,
font-variant, font-weight, font, letter-spacing,
line-height, text-align, text-indent, texttransform,word-spacing

列表相关属性:

list-style-image, list-style-position,
list-style-type, list-style

样式的覆盖

规则:

p {
     color: white !important;
}
  • 元素选择器: 1
  • 类选择起器: 10
  • ID选择器: 100
  • 内联选择器: 1000

样式继承与覆盖示例

.abstract{
    color:grey;
}
.abstract a{
    color:inherit;
    text-decoration:none;
    border:thin black solid;
}
.different {
    color: red ;
}
.different a{
    text-decoration: none ;
    border:thin black solid;
}

执行效果如下图:


demo1.png
详细代码[点这里](https://github.com/tw-lab-roadmap-1/YangHuili-task2-homework2/tree/master/demo1)
  h1{
    color:red;
 }
  #change{
    color:blue;
}

执行效果如下:

demo2.png
详细代码点这里
<body>
     <h1 id="change" style="color: grey">
          HelloWord,你看到的是已经经历过三次变换的文字。
    </h1>
</body>
h1{
    color: red;
 }
#change{
    color:black !important
}

执行效果如下:

demo3.png
详细代码点这里
a{
    color:black;
}
a.hehe{
    color:white;
    background:grey;
}

详细代码点这里

a.hehe1{
    color:black;
}
a.hehe2{
    color:white;
    background:grey;
}

文件上代码行号更靠下的优先级更高,即后写的覆盖先写的。
详细代码点这里

.abstract{
    color:white;
    background:grey;
    border:medium black solid;
}
span{
    border:inherit
}

如上所示,将span 的 border 属性设为“inherit”,span 就会继承父元素的样式。
详细代码点这里

上一篇下一篇

猜你喜欢

热点阅读