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>

40px of padding on left default.

just apply padding-left:0; on appropriate <ul> fix this.


Comments

Popular posts from this blog

Fail to load namespace Spring Security http://www.springframework.org/security/tags -

sql - MySQL query optimization using coalesce -

unity3d - Unity local avoidance in user created world -