How do I center navigation links?
How do i center my navigation links? I used flexbox and added justify-content: space-between, but it still seems a bit off centered
3 Replies
you could try using grid instead
Just a little thing to add to Mannix answer: the left and right column(s) just have to be the same and the middle one doesnt matter.
For example:
1fr auto 1fr
, or 50px 1fr auto 50px 1fr
Oh, so grid is the way to go. I've only looked into flexbox, so I'll go check grid out. Thanks!