KKeine Bearbeitungszusammenfassung |
KKeine Bearbeitungszusammenfassung |
||
| Zeile 8: | Zeile 8: | ||
flex-direction: row; | flex-direction: row; | ||
flex-wrap: wrap; | flex-wrap: wrap; | ||
align-items: stretch; | |||
justify-content: space-between; | justify-content: space-between; | ||
} | } | ||
.flexelement { | .flexelement { | ||
width: | width:33%; | ||
} | } | ||
Version vom 21. Mai 2019, 16:10 Uhr
.Voraussetzungen li {
margin-bottom: 15px;
}
.flexbox {
width: 100%;
display:flex;
flex-direction: row;
flex-wrap: wrap;
align-items: stretch;
justify-content: space-between;
}
.flexelement {
width:33%;
}
/*** Formatierungen für Mobil-Geräte ***/
@media (max-width: 900px) {
.flexelement {
width:100%;
}
} /* Ende Formatierungen für Mobil-Geräte */