css选择器

1.id选择器

选择设置id的元素


div
div1
div2

2、class选择器

选择有相同class的元素


c1, c2
c2
c1

3.属性选择器

以某个属性作为选择依据

input[type="text"]
{
  width:150px;
  display:block;
  margin-bottom:10px;
  background-color:yellow;
  font-family: Verdana, Arial;
}

input[type="button"]
{
  width:120px;
  margin-left:35px;
  display:block;
  font-family: Verdana, Arial;
}

4.分组选择器

可以对选择器进行分组,被分组的选择器对应的元素就有相同的样式。 用逗号将需要分组的选择器分开。


5.派生选择器

选择某个元素下的子元素,通常用于作用域隔离,如


这是大标题

这是mod-box里的标题

这是mod-box的内容

6.css3常用选择器

  • :first-of-type 从一组中选择第一个元素
  • :last-of-type 从一组中选择最后一个元素

这是标题

这是第一个段落。

这是第二个段落。

这是第三个段落。

这是第四个段落。

  • :hover 鼠标放置上的样式(ie6、7、8不支持a以外的标签使用:hover)


按钮
  • ::selection 选中文本后的效果,只能添加color、background、cursor 以及 outline
    这里是段落

这里是段落

  • :before在元素前面添加内容, :after在元素后面添加内容(ie6、7不支持)
 
  

你可能感兴趣的:(css选择器)