sandbox.css 490 B

123456789101112131415161718192021222324252627282930313233
  1. * {
  2. box-sizing: border-box;
  3. }
  4. .container {
  5. background: #EEE;
  6. width: 50%;
  7. margin-bottom: 20px;
  8. }
  9. .item {
  10. width: 60px;
  11. height: 60px;
  12. float: left;
  13. border: 1px solid;
  14. background: #09F;
  15. }
  16. .item.w2 { width: 120px; }
  17. .item.w3 { width: 180px; }
  18. .item.w4 { width: 240px; }
  19. .item.h2 { height: 100px; }
  20. .item.h3 { height: 160px; }
  21. .item.h4 { height: 220px; }
  22. .item.h5 { height: 280px; }
  23. .stamp {
  24. background: red;
  25. opacity: 0.75;
  26. position: absolute;
  27. border: 1px solid;
  28. }