index.css 359 B

12345678910111213141516171819202122232425262728
  1. @charset "UTF-8";
  2. * {
  3. margin: 0;
  4. padding: 0;
  5. list-style: none;
  6. text-decoration: none;
  7. box-sizing: border-box;
  8. }
  9. /*
  10. 多行注释
  11. .sass .scss
  12. sass格式会省略花括号和分号 所以常用scss存储
  13. */
  14. .box {
  15. width: 200px;
  16. height: 200px;
  17. font-size: 30px;
  18. border: 3px solid red;
  19. }
  20. h1 {
  21. color: blue;
  22. }
  23. h2 {
  24. color: blue;
  25. }