CSS Justify Content — a practical guide to CSS justify-content with clear examples you can reuse in real projects.
CSS Tutorial Series (61/109). Prefer one article? Read the complete CSS tutorial.
Short description
Use start/center/space-between/space-around/space-evenly intentionally.
Justify
.nav {
display: flex;
justify-content: space-between;
}