码迷,mamicode.com
首页 > 其他好文 > 详细

(整理)CCS中常用的选择器

时间:2017-10-15 23:21:33      阅读:1647      评论:0      收藏:0      [点我收藏+]

标签:child   over   区分大小写   顺序   精确   gre   必须   组合   提示   

**类选择器**
1、点号开始
2、包含字母、数字、连字符、下划线
3、点后面必须是字母开始
4、区分大小写
5、一个类选择器可以应用到多个标签
****



**ID选择器**(尽量不要用,留给JS)
****


**组合选择器/并集选择器**
****


#伪类选择器

元素名称:伪类名称

a:link(未访问)
a:vistied(已访问)
a:hover(鼠标悬停)
a:active(点击时)
顺序必须是L、v、h、a

选择子代选择器(精确)

:nth-child(x)
例子
ul li:nth-child(2)
{color:red;}
表示ul下的第二个li,字体为红色

:nth-child(xn)
其中n的取值是从0开始
例子
ul li:nth-child(2n)
{color:red;}


选择偶数项
ul li:nth-child(even)
{color:red;}

选择奇数项
ul li:nth-child(odd)
{color:red;}

选择div里类型为p的第三个p元素
例子
div p:nth-of-type(3){color:red}




:last-child
:nth-last-child
:onl-child
:onl-of-type








****

#后代选择器

父级元素名称+空格+子级元素名称{声明块}

例如
div p {color:red;}

*****
#子级选择器

父级元素名称+“>”+子级元素名称{声明块}

例如
div >p {color:red}

#属性选择器
input type=“text”
格式一:元素名称[属性名称+属性值]{声明块}

input[type=“text”]{color:red;}

设置placeholder提示信息的样式颜色
input::-webkit-input-placeholder{color:red;}


选择以属性值开始的标签
元素名称[属性名称+^=+属性值]{声明块}
input[name^="si"]{color:green;}


选择以属性值结束的标签
元素名称[属性名称+$=+属性值]{声明块}
input[name$="chaun"]{color:green;}

选择包含属性值的标签
元素名称[属性名称*=+属性值]{声明块}
input[name*="chaun"]{colo:green;}

(整理)CCS中常用的选择器

标签:child   over   区分大小写   顺序   精确   gre   必须   组合   提示   

原文地址:http://www.cnblogs.com/-huangrui/p/7674729.html

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