4_类选择器.html 815 B

123456789101112131415161718192021222324252627282930313233343536373839
  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>Document</title>
  7. <style>
  8. /* 伪类选择器 */
  9. /* li:first-child{
  10. color: red;
  11. }
  12. li:last-child{
  13. color: blue;
  14. }
  15. li:nth-child(3){
  16. color: yellow;
  17. } */
  18. /* odd 选中奇数标签 */
  19. /* li:nth-child(odd){
  20. color: red;
  21. } */
  22. /* even 选中偶数标签 */
  23. li:nth-child(even){
  24. color: red;
  25. }
  26. li:hover{
  27. color: blue;
  28. }
  29. </style>
  30. </head>
  31. <body>
  32. <ul>
  33. <li>hello</li>
  34. <li>world</li>
  35. <li>你好</li>
  36. <li>世界</li>
  37. </ul>
  38. </body>
  39. </html>