博客列表 >CSS: 伪类和参数-复习

CSS: 伪类和参数-复习

异乡客
异乡客原创
2022年05月09日 21:00:24695浏览

<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>选择器:伪类</title>
</head>
<body>
<!-- 伪类: 1.结构伪类:根据元素位置获取元素 2.状态伪类:根据状态来获取元素 -->

  1. <ul class="list">
  2. <li class="first">item1</li>
  3. <li>item2</li>
  4. <li>item3</li>
  5. <li>item4</li>
  6. <li>item5</li>
  7. <li>item6</li>
  8. <li>item7</li>
  9. <li>item8</li>
  10. <p>aaaa</p>
  11. <p>bbbb</p>
  12. <p>cccc</p>
  13. </ul>
  14. <style>
  15. /* .list >:first-child{
  16. background-color: red;
  17. } */
  18. /* .list >p:first-of-type{
  19. background-color: yellow;
  20. }
  21. .list .first{
  22. background-color: lightgreen;
  23. } */
  24. /* .list >li:nth-of-type(3){
  25. background-color: lightblue;
  26. } */
  27. /* .list >li:nth-last-of-type(3){
  28. background-color: lightblue;
  29. } */
  30. .list >p:nth-of-type(2){
  31. background-color: lightblue;
  32. }
  33. .list :first-of-type{
  34. background-color: lightblue;
  35. }
  36. </style>
  37. </body>
  38. </html>
声明:本文内容转载自脚本之家,由网友自发贡献,版权归原作者所有,如您发现涉嫌抄袭侵权,请联系admin@php.cn 核实处理。
全部评论
文明上网理性发言,请遵守新闻评论服务协议