4,554
edits
No edit summary |
No edit summary |
||
Line 998: | Line 998: | ||
display: flex; /* This will create a flex container */ | display: flex; /* This will create a flex container */ | ||
flex-wrap: nowrap; /* This prevents the items from wrapping onto multiple lines */ | flex-wrap: nowrap; /* This prevents the items from wrapping onto multiple lines */ | ||
justify-content: space- | justify-content: space-evenly; /* This spreads out the child elements evenly */ | ||
align-items: | align-items: left; /* This aligns the child elements vertically in the center */ | ||
} | } | ||