Wie man gleichmäßig Raumsymbole in einem Div CSS hat
<style>
.menu { display: flex; justify-content: space-between; }
</style>
PassionFruit2389
<style>
.menu { display: flex; justify-content: space-between; }
</style>
.test {
display: flex;
flex-flow: row wrap;
justify-content: space-around;
}
.test > div {
margin-top: 10px;
padding: 20px;
background-color: #FF0000;
}