码迷,mamicode.com
首页 > Web开发 > 详细

css选择器

时间:2018-07-29 10:11:03      阅读:218      评论:0      收藏:0      [点我收藏+]

标签:应用   after   link   span   标记   html   ted   not   line   

1、元素选择器

会选到HTML中所有同样的标记

2、类选择器

会应用到具有这个类的元素

3、ID选择器

具有唯一性

4、通配符

* 表示所有

5、伪类选择器

link 未访问时

hover 鼠标悬停、移入

active 鼠标点击下去时

visited 访问后

li:nth-child()

li:first-chlid

li:last-chlid

li:not(first-chlid)

6、伪元素选择器

before 在什么之前

after 在什么之后

first-line 首行

first-letter 首字母

7、并集选择器

h1,h2,h3,box1{

                         font-weight:normal;

}

8、后代选择器

.box2 span{

                    border:1px solid red;

}

9、子级选择器

.box2>span{

                     border:1px solid red;

}

 

css选择器

标签:应用   after   link   span   标记   html   ted   not   line   

原文地址:https://www.cnblogs.com/badren/p/9384332.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!