Wechseln zu:Navigation, Suche
Wiki
KKeine Bearbeitungszusammenfassung
KKeine Bearbeitungszusammenfassung
Zeile 9: Zeile 9:
   flex-wrap: wrap;
   flex-wrap: wrap;
   justify-content: space-between;
   justify-content: space-between;
  align-items: stretch;
   }
   }



Version vom 21. Mai 2019, 17:06 Uhr

.Voraussetzungen li {
  margin-bottom: 15px;
  }

.flexbox {
  width: 100%;
  display:flex;
  flex-direction: row;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: stretch;
  }

.flexelement {
  width:32%;
  }


/*** Formatierungen für Mobil-Geräte ***/

@media (max-width: 900px) {
.flexelement {
  width:100%;
  }

} /*  Ende Formatierungen für Mobil-Geräte */