7. Flexbox-Layouts
Flexbox macht es einfach, Elemente nebeneinander anzuordnen und Abstände automatisch zu verteilen.
.container {
display: flex;
justify-content: space-around;
}
Flexbox macht es einfach, Elemente nebeneinander anzuordnen und Abstände automatisch zu verteilen.
.container {
display: flex;
justify-content: space-around;
}