index.css 416 B

123456789101112131415161718192021222324252627282930313233343536
  1. @charset "UTF-8";
  2. @import url("./reset.css");
  3. * {
  4. margin: 0;
  5. padding: 0;
  6. list-style: none;
  7. text-decoration: none;
  8. box-sizing: border-box;
  9. }
  10. /*
  11. 今天天气真好
  12. */
  13. h1 {
  14. color: #f00;
  15. }
  16. ul {
  17. width: 700px;
  18. height: 700px;
  19. border: 10px dashed #0f0;
  20. }
  21. ul li {
  22. color: purple;
  23. font-size: 30px;
  24. font-weight: bold;
  25. }
  26. ul li:hover {
  27. color: #ff0;
  28. }
  29. ul li:nth-child(2):hover {
  30. color: #f00;
  31. }