博客列表 >伪类选择器(不分组与分租)

伪类选择器(不分组与分租)

零龙
零龙原创
2020年06月18日 21:32:54580浏览

伪类选择器


  • 实例
  1. <!DOCTYPE html>
  2. <html lang="en">
  3. <head>
  4. <meta charset="UTF-8">
  5. <meta name="viewport" content="width=device-width, initial-scale=1.0">
  6. <title>结构伪类选择器:不分组(不区分元素类型)</title>
  7. </head>
  8. <style>
  9. .box{
  10. width: 330px;
  11. height: 330px;
  12. margin: 0px auto;
  13. background-color: #818181;
  14. text-align: center;
  15. }
  16. .item
  17. {
  18. width: 100px;
  19. height: 100px;
  20. float:left;
  21. border: white 1px solid;
  22. margin: 4px;
  23. line-height: 100px;
  24. font-size: 2rem;
  25. color: white;
  26. }
  27. /* 分组结构伪类分二步:
  28. 1.元素按类型进行分组。
  29. 2.分组中根据索引进行选择。 */
  30. .box span:last-of-type
  31. {
  32. background-color: lightgreen;
  33. }
  34. /* 匹配任意一个元素 */
  35. .box span:nth-last-of-type(-n+5)
  36. {
  37. background-color: maroon;
  38. }
  39. </style>
  40. <body>
  41. <div class="box">
  42. <div class="item">1</div>
  43. <div class="item">2</div>
  44. <div class="item">3</div>
  45. <span class="item">4</span>
  46. <span class="item">5</span>
  47. <span class="item">6</span>
  48. <span class="item">7</span>
  49. <span class="item">8</span>
  50. <span class="item">9</span>
  51. </div>
  52. </body>
  53. </html>
声明:本文内容转载自脚本之家,由网友自发贡献,版权归原作者所有,如您发现涉嫌抄袭侵权,请联系admin@php.cn 核实处理。
全部评论
文明上网理性发言,请遵守新闻评论服务协议