demo.css 648 B

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748
  1. @charset "UTF-8";
  2. i {
  3. font-weight: bold;
  4. color: #f00;
  5. }
  6. p {
  7. color: #00f;
  8. font-size: 30px;
  9. /*
  10. 多行注释
  11. */
  12. }
  13. .box {
  14. border: 10px double #f00;
  15. color: #00f;
  16. background-color: #ff0;
  17. font-size: 30px;
  18. width: 200px;
  19. height: 100px;
  20. margin-top: 20px;
  21. border-radius: 20px;
  22. box-shadow: 10px 10px 10px #0f0;
  23. }
  24. .newBox {
  25. border: 10px double #f00;
  26. color: #00f;
  27. background-color: #ff0;
  28. font-size: 30px;
  29. width: 200px;
  30. height: 100px;
  31. margin-top: 20px;
  32. border-radius: 20px;
  33. }
  34. #list {
  35. width: 200px;
  36. height: 200px;
  37. background: #f00;
  38. }
  39. .mask {
  40. width: 40px;
  41. height: 50px;
  42. background: yellow;
  43. }