Centering List Items Horizontally (Slightly Trickier Than ... - CSS-Tricks
https://css-tricks.com/centering-list-items-horizontally-slightly-trickier-than-you-might-think/
If you want to make this navigational unordered list horizontal, you have basically two options: Make the list items inline instead of the default block. .li { display: inline; } This will not force breaks after the list items and they will line up horizontally as far as they are able. Float the list items. ...
Make the list items inline instead of the default block. .li { display: inline; } This will not force breaks after the list items and they will line up horizontally as far as they are able.
Float the list items. ...
DA: 62 PA: 28 MOZ Rank: 49