您现在的位置是:首页 > 技术教程 正文

CSS的选择器(超详细)

admin 阅读: 2024-03-27
后台-插件-广告管理-内容页头部广告(手机)

目录

一、常用的选择器

1.元素选择器

2.类选择器(class选择器)

3.id选择器

4.通配符选择器

二、群组选择器

 三、关系选择器

1.后代选择器

 2.子代选择器

3.相邻兄弟选择器

 4.通用兄弟选择器

5.案例

 四、属性选择器

 五、伪类选择器

1.常用的伪类选择器

 2.否定伪类

3.元素的伪类

六、伪元素选择器


一、常用的选择器

1.元素选择器

语法 : 标签名{}

作用 : 选中对应标签中的内容

例:p{} , div{} , span{} , ol{} , ul{} ......

2.类选择器(class选择器)

语法 : .class属性值{}

作用 : 选中对应class属性值的元素

例子 : 

段落1

         

段落1

         

段落1

          .A{} , .B{} , .C{} ......

注意:class里面的属性值不能以数字开头,如果以符号开头,只能是'_'或者'-'这两个符号,其他的符号不可以,一个class里面可以有多个属性值

3.id选择器

语法 : #id属性值{}

作用 : 选中对应id属性值的元素

例子 : 

段落1

         

段落1

         

段落1

          #A{} , #B{} , #C{} ......

注意 : id的属性值只能给1个,可以重复利用,不能以数字开头

4.通配符选择器

语法 : *{}

作用 : 让页面中所有的标签执行该样式,通常用来清除间距

例子 : *{

             margin: 0;  //外间距

             padding: 0;  //内间距

}

二、群组选择器

语法 : 选择器1,选择器2,选择器3...{}

作用 : 同时选中对应选择器的元素

例子 : 

  1. <style>
  2. /* 用群组的目的是为了简化代码量 */
  3. div,p,h3,.li2{
  4. font-size: 30px;
  5. }
  6. div,.li2,.text3{
  7. color: red;
  8. }
  9. p{
  10. color: blue;
  11. }
  12. h3{
  13. color: pink;
  14. }
  15. style>
  16. <div>盒子1div>
  17. <p>段落1p>
  18. <p>段落2p>
  19. <h3>文本标题3h3>
  20. <h3 class="text3">文本标题3h3>
  21. <ol>
  22. <li>有序列表li>
  23. <li class="li2">有序列表li>
  24. <li>有序列表li>
  25. ol>

 三、关系选择器

1.后代选择器

后代选择器也叫包含选择器,祖先元素直接或间接的包含后代元素

  1. <style>
  2. /* 后代选择器(包含选择器),选择到的是box下面的所有后代p */
  3. .box p{
  4. width: 200px;
  5. height: 200px;
  6. background-color: yellow;
  7. }
  8. style>
  9. <div class="box">
  10. <p>0000p>
  11. <div>
  12. <p>11111p>
  13. <p>22222p>
  14. div>
  15. <div class="box2">
  16. <p>333p>
  17. div>
  18. <p>444p>
  19. div>

  1. <style>
  2. /* 选择到的是box的后代div的后代p */
  3. .box div p {
  4. width: 200px;
  5. height: 200px;
  6. background-color: yellow;
  7. }
  8. style>
  9. <div class="box">
  10. <p>0000p>
  11. <div>
  12. <p>11111p>
  13. <p>22222p>
  14. div>
  15. <div class="box2">
  16. <p>333p>
  17. div>
  18. <p>444p>
  19. div>

 2.子代选择器

父元素直接包含子元素,子元素直接被父元素包含

  1. <style>
  2. /*子选择器选中的是.box下所有的儿子p
  3. .box>p{
  4. width: 200px;
  5. height: 200px;
  6. background-color: yellow;
  7. }
  8. style>
  9. <div class="box">
  10. <p>0000p>
  11. <div>
  12. <p>11111p>
  13. <p>22222p>
  14. div>
  15. <div class="box2">
  16. <p>333p>
  17. div>
  18. <p>444p>
  19. div>

  1. <style>
  2. /*子选择器选中的是.box下所有儿子div中的儿子p
  3. .box>div>p{
  4. width: 200px;
  5. height: 200px;
  6. background-color: yellow;
  7. }
  8. style>
  9. <div class="box">
  10. <p>0000p>
  11. <div>
  12. <p>11111p>
  13. <p>22222p>
  14. div>
  15. <div class="box2">
  16. <p>333p>
  17. div>
  18. <p>444p>
  19. div>

3.相邻兄弟选择器

  1. <p>000p>
  2. <div class="box">盒子1div>
  3. <p>111p>
  4. <p>222p>
  5. <p>333p>
  6. <div>
  7. <p>44444p>
  8. div>
  9. <p>5555p>

以上面的代码为例,除了内容为'44444'的的p标签外,其余的所有元素均为兄弟元素,而相邻兄弟元素就是紧挨着的两个标签

给上述代码加上内部修饰样式:

  1. <style>
  2. /* 相邻兄弟,会选择到box后面紧挨着的p,那么就是内容为111的p标签 */
  3. .box+p{
  4. width: 200px;
  5. height: 200px;
  6. background-color: yellow;
  7. }
  8. style>

我们打开页面看看效果:

 4.通用兄弟选择器

  1. <p>000p>
  2. <div class="box">盒子1div>
  3. <p>111p>
  4. <p>222p>
  5. <p>333p>
  6. <div>
  7. <p>44444p>
  8. div>
  9. <p>5555p>

同样以上面的代码为例,添加一段内部修饰样式:

  1. <style>
  2. /*通用兄弟选择器,会选择到.box后面所有的兄弟p,那么就是除了内容为'44444'以外的所有p*/
  3. .box~p{
  4. width: 200px;
  5. height: 200px;
  6. background-color: yellow;
  7. }
  8. style>

 

5.案例

以上面的代码为例,现在有一个需求,想要内容为'5555'的标签自己变换样式,其余的都不变,我们先来分析一下,这个标签很明显,单独选择相邻兄弟元素或者通用兄弟元素都是无法实现只改变p5这个标签,先看看p5标签在.box后面,而.box后面只有一个div标签,刚好p5就是这个div的兄弟元素,代码如下:

  1. <style>
  2. .box~div+p{
  3. width: 200px;
  4. height: 200px;
  5. background-color: yellow;
  6. }
  7. style>

 四、属性选择器

属性选择器一共有7种写法

1.某某[属性]

2.某某[属性=属性值]

3.某某[属性^=属性值]

4.某某[属性$=属性值]

5.某某[属性*=属性值]

6.某某[属性~=属性值]

7.某某[属性|=属性值]

举个小案例:

  1. <style>
  2. .demo {
  3. width: 300px;
  4. border: 1px solid #ccc;
  5. padding: 10px;
  6. overflow: hidden;
  7. margin: 20px auto;
  8. }
  9. .demo a {
  10. float: left;
  11. display: block;
  12. height: 50px;
  13. width: 50px;
  14. border-radius: 10px;
  15. text-align: center;
  16. background: #aac;
  17. color: blue;
  18. font: bold 20px/50px Arial;
  19. margin-right: 5px;
  20. text-decoration: none;
  21. margin: 5px;
  22. }
  23. style>
  24. <div class="demo">
  25. <a href="http://www.baidu.com" target="_blank" class=" links item first" id="first" title="link">1a>
  26. <a href="" class="links active item" title="test website" target="_blank" lang="zh">2a>
  27. <a href="sites/file/test.html" class="links item" title="link-1 aa" lang="zh-cn">3a>
  28. <a href="sites/file/test.png" class="links item" target="_balnk" lang="zh-tw">4a>
  29. <a href="sites/file/image.jpg" class="links item" title="link-23 aa">5a>
  30. <a href="mailto:baidu@hotmail" class="links item" title="website link" lang="zh">6a>
  31. <a href="/a.pdf" class="links item" title="open the website" lang="cn">7a>
  32. <a href="/abc.pdf" class="linksitem" title="close the website" lang="en-zh">8a>
  33. <a href="abcdef.doc" class="links item" title="http://www.sina.com">9a>
  34. <a href="abd.doc" class="linksitem last" id="last">10a>
  35. div>

以上代码的默认样式是这样的:

现在在style标签内写入1~7个方法的修饰样式:

  1. <style>
  2. /* 属性选择器的权重是0010 */
  3. /* 写法1 某某[属性] 选择到a标签且有title属性的变*/
  4. /* a[title]{
  5. background: yellow;
  6. } */
  7. /* a[lang][target]{
  8. background: yellow;
  9. } */
  10. /*重点: 写法2: 某某[属性=属性值] 选择到有某某标签有指定属性且属性值必须一摸一样的也有的多一个空格都不行 */
  11. /* a[lang="zh"]{
  12. background: yellow;
  13. } */
  14. /* a[title="this is a link"]{
  15. background: yellow;
  16. } */
  17. /* class名字是item的,且有属性lang且属性值必须一模一样是zh-cn的 */
  18. /* .item[lang="zh-cn"]{
  19. background: yellow;
  20. } */
  21. /* id是last且有title属性且有class属性,属性值只能是links的变 */
  22. /* #last[title][class="links"]{
  23. background: yellow;
  24. } */
  25. /* 写法3: 某某[属性^=属性值] */
  26. /* a标签有class属性且属性值是li开头的 */
  27. /* a[class^=" li"]{
  28. background-color: yellow;
  29. } */
  30. /* a[title^="this"][lang]{
  31. background-color: yellow;
  32. } */
  33. /* 写法4 某某[属性$=属性值] */
  34. /* a标签有class属性且属性值结尾是t的变 */
  35. /* a[class$="t"]{
  36. background-color: yellow;
  37. } */
  38. /* a[href$=".pdf"]{
  39. background-color: yellow;
  40. }
  41. a[href$=".doc"]{
  42. background-color: red;
  43. }
  44. a[href$=".png"]{
  45. background-color: green;
  46. } */
  47. /* 写法5 某某[属性*=属性值] */
  48. /* 选择到a标签且有href属性且只要有字母b就可以 */
  49. /* a[href*="b"]{
  50. background-color: green;
  51. } */
  52. /* 写法6 某某[属性~=属性值] */
  53. /* 选择到的是a标签且有class属性,且属性值有完整的itme词的变 */
  54. /* a[class~="item"]{
  55. background-color: green;
  56. } */
  57. /* 写法7 某某[属性|=属性值] */
  58. /* 这个是选择到有a标签,且有属性title,且属性值只有1个是link的或者属性值有多个但是得是link-开头的变 */
  59. a[title|="link"]{
  60. background-color: green;
  61. }
  62. style>

现在默认展示的是第七个方法(需要看其他6种方法的同学自行打开其余6种方法的注释),现在选择到的是有a标签,且有属性title,且属性值只有1个是link的或者属性值有多个但是得是link-开头的变,那么就是第一,第三,和第五个,打开页面看看

 五、伪类选择器

1.常用的伪类选择器

:first-child   第一个子元素

:last-child    最后一个子元素

:nth-child()   选中第n个元素

关于:nth-child()的特殊值(括号内的内容可以填写以下几种)

        n   第n个   n的范围0到正无穷(全选)

        even或2n    选中偶数位的元素

        odd或2n+1   选中奇数位得到元素

以child结尾的是在所有元素中选择

:first-of-type  第一个子元素

:last-of-type   最后一个子元素

:nth-of-type()    选中第n个元素
以type结尾的是在相同元素中选择

  1. <style>
  2. /* box下面的第1个子元素变,也就是p1变 */
  3. .box :first-child{
  4. border: 2px solid blue;
  5. }
  6. /* box下面的第1个子元素是li的时候变*/
  7. .box li:first-child{
  8. border: 2px solid blue;
  9. }
  10. .box p:first-child{
  11. border: 2px solid blue;
  12. }
  13. /* box下面的最后1个子元素变,也就是p6变 */
  14. .box :last-child{
  15. border: 2px solid blue;
  16. }
  17. .box p:last-child{
  18. border: 2px solid blue;
  19. }
  20. /* box下面的第3个子元素变 */
  21. .box :nth-child(3){
  22. border: 2px solid blue;
  23. }
  24. .box li:nth-child(3){
  25. border: 2px solid blue;
  26. }
  27. /* box下面的第7个子元素是p的变 */
  28. .box p:nth-child(7){
  29. border: 2px solid blue;
  30. }
  31. .box p:nth-child(9){
  32. border: 2px solid blue;
  33. }
  34. /* n是从0开始的数列 把n=0开始往n+3里面计算就可 */
  35. /* n=0 n+3=3 */
  36. /* n=1 n+3=4 */
  37. /* n=2 n+3=5... 结果就是第3,4,5,6,7,8,9...变*/
  38. .box :nth-child(n+3){
  39. border: 2px solid blue;
  40. }
  41. /* box下面的第3,4,5,6,7,8,9...是li的时候变 */
  42. .box li:nth-child(n+3){
  43. border: 2px solid blue;
  44. }
  45. /* 表示的意思是box里面的第3,2,1个变 */
  46. .box :nth-child(-n+3){
  47. border: 2px solid blue;
  48. }
  49. /* 表示的意思是box里面的第3,2,1个是p变 */
  50. .box p:nth-child(-n+3){
  51. border: 2px solid blue;
  52. }
  53. /* 表示的意思是box里面的第2,4,6,8,10,12.... 偶数的 */
  54. .box :nth-child(2n){
  55. border: 2px solid blue;
  56. }
  57. .box :first-child{
  58. border: 2px solid red;
  59. }
  60. /* 表示的意思是box里面的第2,4,6,8,10,12....是li的变 偶数的 */
  61. .box li:nth-child(2n){
  62. border: 2px solid blue;
  63. }
  64. /* 2n和even都是偶数的意思 */
  65. .box li:nth-child(even){
  66. border: 2px solid blue;
  67. }
  68. /* 表示的意思是box里面的第1,3,5,7,9...个变也就是奇数变 */
  69. .box :nth-child(2n+1){
  70. border: 2px solid blue;
  71. }
  72. .box :nth-child(odd){
  73. border: 2px solid blue;
  74. }
  75. /* 5 7 9 .... */
  76. .box :nth-child(2n+5){
  77. border: 2px solid blue;
  78. }
  79. .box :nth-last-child(2n){
  80. border: 2px solid blue;
  81. }
  82. .box :only-child{
  83. border: 2px solid blue;
  84. }
  85. style>
  86. <ul class="box">
  87. <p>1111p>
  88. <p>222p>
  89. <li>无序列表的li1li>
  90. <p>33333p>
  91. <li>无序列表的li2li>
  92. <li>无序列表的li3li>
  93. <p>44444p>
  94. <li>无序列表的li4li>
  95. <p>555p>
  96. <li>无序列表的li5li>
  97. <p>666p>
  98. ul>

 

  1. <style>
  2. /* box下面的第1个子元素变,从结构看第1个是p,所以p1变了 */
  3. .box :first-child{
  4. border: 2px solid blue;
  5. }
  6. /* box下面的同类型的第1个变,从目前的结构上看ul下面有2个类型,1个是li和1个是p所以li类型和p类型的第1个都变了 */
  7. .box :first-of-type{
  8. border: 2px solid blue;
  9. }
  10. /* -child和-type的区别 child只看某个父元素下面的子元素 -type看的某父元素下面的同类型的子元素 child就是问班级有多少人 type就是问班级有多少女生和多少男生 */
  11. .box :last-of-type{
  12. border: 2px solid blue;
  13. }
  14. .box p:last-of-type{
  15. border: 2px solid blue;
  16. }
  17. /* box 里面的p的第2个 */
  18. .box p:nth-of-type(6){
  19. border: 2px solid blue;
  20. }
  21. /* 选择box中li里面的第偶数个 */
  22. .box li:nth-of-type(2n){
  23. border: 2px solid blue;
  24. }
  25. .box li:nth-of-type(2n+1){
  26. border: 2px solid blue;
  27. }
  28. .box li:nth-last-of-type(2){
  29. border: 2px solid blue;
  30. }
  31. /* box里面的只有1个子元素是li的时候变 */
  32. .box li:only-child{
  33. border: 2px solid blue;
  34. }
  35. /* box里面的li只有1个的时候变 */
  36. .box li:only-of-type{
  37. border: 2px solid blue;
  38. }
  39. .box :nth-last-child(2){
  40. border: 3px solid blue;
  41. }
  42. .box :nth-last-of-type(2){
  43. border: 3px solid blue;
  44. }
  45. style>
  46. <ul class="box">
  47. <p>1111p>
  48. <p>222p>
  49. <li>无序列表的li1li>
  50. <p>33333p>
  51. <li>无序列表的li2li>
  52. <li>无序列表的li3li>
  53. <p>44444p>
  54. <li>无序列表的li4li>
  55. <p>555p>
  56. <li>无序列表的li5li>
  57. <p>666p>
  58. ul>

 2.否定伪类

:not()        将符号条件的元素去除

3.元素的伪类

:link        表示未访问过的a标签
:visited    表示访问过的a标签

以上两个伪类是超链接所独有的
由于隐私的问题,所以visited这个伪类只能修改链接的颜色

以下两个伪类是所有标签都可以使用
:hover        鼠标移入后元素的状态
:active        鼠标点击后,元素的状态 

六、伪元素选择器

同伪类一样,伪元素也是不存在的元素,表示元素的特殊状态

常见的几个伪元素:

::first-letter    表示第一个字母

::first-line       表示第一行

::selection     表示选中的元素

::before         元素开始的位置前

::after            元素结束的位置后

befor和after必须配合contend一起使用(before,after所写的内容无法选中且永远在最前和最后)

标签:
声明

1.本站遵循行业规范,任何转载的稿件都会明确标注作者和来源;2.本站的原创文章,请转载时务必注明文章作者和来源,不尊重原创的行为我们将追究责任;3.作者投稿可能会经我们编辑修改或补充。

在线投稿:投稿 站长QQ:1888636

后台-插件-广告管理-内容页尾部广告(手机)
关注我们

扫一扫关注我们,了解最新精彩内容

搜索