index.css 435 B

12345678910111213141516171819202122232425
  1. .box {
  2. width: 200px;
  3. height: 200px;
  4. background: #00f;
  5. margin-top: 20px;
  6. color: #ff0;
  7. font-size: 30px;
  8. font-weight: bold;
  9. }
  10. * {
  11. margin: 0;
  12. padding: 0;
  13. box-sizing: border-box;
  14. }
  15. .special {
  16. background: #f00;
  17. /* position: fixed; */
  18. /* position: sticky; */
  19. /* position: static; */
  20. /* top: 150px; */
  21. position: absolute;
  22. top: 100px;
  23. left: 150px;
  24. /* left: 100px; */
  25. }