html - How to center a navigation bar properly? -
i understand, lots of people have asked question on how center navigation bar when apply css, centers aligns nav bar bit right:
nav { text-align: center; } nav li { display: inline-block; }
could due list items having different lengths or think different problem?
your <ul>
has padding-left
, default. check in developer tools.
nav { background: #999; text-align: center; } nav li { background: #ccc; display: inline-block; }
<nav> <ul> <li>menu 1</li> <li>menu 2</li> <li>menu 3</li> </ul> </nav>
just apply padding-left:0;
on appropriate <ul>
fix this.
Comments
Post a Comment