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_styles.css 335B

123456789101112131415161718192021222324
  1. .menu_element {
  2. background-color: orangered;
  3. width: 50px;
  4. display: inline;
  5. }
  6. #menu {
  7. list-style-type: none;
  8. }
  9. .grid-wrapper {
  10. display: grid;
  11. padding: 4rem 4rem 0 4rem;
  12. grid-template-columns: 1fr;
  13. grid-template-rows: 100px 100px 100px;
  14. grid-gap: 10px;
  15. }
  16. .box {
  17. background-color: grey;
  18. }