html - How to align Navigation Menu to center? -


i need align website's nav menu center.

here code. what's wrong it? not align menu center.

html

<div class="menu_nav">     <ul style="font-family:ubuntu">         <li><a href="index.html">home</a></li>         <li><a href="activities.html">activities</a></li>         <li><a href="games.html">games</a></li>         <li><a href="about.html">about us</a></li>         <li><a href="contact.html">contact us</a></li>     </ul> </div> 

css

.menu_nav {     text-transform: uppercase;     margin: 0 auto;  } .menu_nav ul {     list-style: none;     margin: 0 auto;  } .menu_nav ul li {     margin: 0 auto;     padding: 0 auto;  } .menu_nav ul li {     display:block;     margin: 0 auto;     padding:35px 50px;     color:#fff;     text-decoration:none;     font-size:20px; } 

you're missing text-align:center.

.menu_nav ul {     list-style: none;     margin: 0 auto;     text-align:center; } 

fiddle: http://jsfiddle.net/84exq/


Comments

Popular posts from this blog

wordpress - (T_ENDFOREACH) php error -

Export Excel workseet into txt file using vba - (text and numbers with formulas) -

Using django-mptt to get only the categories that have items -