Eine kleine super Übung zum Kennenlernen.
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

index.html 787B

123456789101112131415161718192021222324252627282930313233
  1. <!DOCTYPE html>
  2. <html lang="en">
  3. <head>
  4. <meta charset="UTF-8">
  5. <meta name="viewport" content="width=device-width, initial-scale=1.0">
  6. <meta http-equiv="X-UA-Compatible" content="ie=edge">
  7. <link rel="stylesheet" href="style.css">
  8. <title>Document</title>
  9. </head>
  10. <style>
  11. .grid-wrapper {
  12. display: grid;
  13. padding: 4rem 4rem 0 4rem;
  14. grid-template-columns: 1fr;
  15. grid-template-rows: 100px 100px 100px;
  16. grid-gap: 10px;
  17. }
  18. .box {
  19. background-color: grey;
  20. }
  21. </style>
  22. <body>
  23. <div class="balance-list">
  24. <h1>Umsätze</h1>
  25. <div class="grid-wrapper">
  26. <div class="box"></div>
  27. <div class="box"></div>
  28. <div class="box"></div>
  29. </div>
  30. </div>
  31. </body>
  32. </html>