3_属性选择器.html 650 B

123456789101112131415161718192021222324252627282930313233
  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. /* .a{
  9. color: red;
  10. }
  11. .b{
  12. font-size:40px ;
  13. } */
  14. /* li[class]{
  15. color: red;
  16. } */
  17. /* li[class=a]{
  18. color: red;
  19. } */
  20. li[class~=a]{
  21. color: red;
  22. }
  23. </style>
  24. </head>
  25. <body>
  26. <ul>
  27. <li class="a">hello</li>
  28. <li class="ab">world</li>
  29. <li class="b a">你好</li>
  30. <li>世界</li>
  31. </ul>
  32. </body>
  33. </html>