首页 > 代码库 > 选择器

选择器

1、id选择器(页面唯一)

#box{
    width: 100px;
}

2、类选择器(一个元素可以有多个class)

.title{
    width: 100px;
}

3、标签选择器

h1{
    color: red;
}

4、群组选择器

p,span,strong{
    font-size: 16px;
}

5、包含选择器

#box .title{
    height: 100px;
}

6、通配符

*{
    margin: 0px;
    padding: 0px;
}

7、选择器优先级

  行间样式>id选择器>类选择器>标签选择器

选择器