CSS 选择器

2016-10-13  本文已影响0人  王难道

常见的CSS选择器

选择器的优先级

从高到低分别是

  1. 在属性后面使用!important覆盖页面内任何位置定义的元素样式
  2. 作为style属性写在元素标签上的内联样式
  3. id选择器
  4. 类选择器
  5. 伪类选择器
  6. 属性选择器
  7. 标签选择器
  8. 通配符选择器
  9. 浏览器自定义

class和id的使用场景

使用CSS选择器时为什么要划定适当的命名空间

命名规则参考
选择器的命名在各浏览器下的支持情况有所不同。因此,如果选择器的命名不规范,将影响各浏览器下,样式渲染不一致。

以下选择器的意思

伪类选择器

:first-child和:first-of-type的作用和区别

读代码

示例

<!DOCTYPE html>
<html lang="en">

<head>
    <meta charset="UTF-8">
    <meta name="viewport" content="width=device-width, initial-scale=1.0">
    <meta http-equiv="X-UA-Compatible" content="ie=edge">
    <title>readcode</title>
    <style>
        .item1:first-child {
            color: red;
        }

        .item1:first-of-type {
            background: blue;
        }
    </style>
</head>

<body>
    <div class="ct">
        <p class="item1">aa</p>
        <h3 class="item1">bb</h3>
        <h3 class="item1">ccc</h3>
    </div>
</body>

</html>

text-align: center的作用以及对象

如果遇到一个属性想知道兼容性,在哪查看?

Can I use

本教程版权归饥人谷和作者所有,转载须说明来源。

上一篇下一篇

猜你喜欢

热点阅读