html - How can I center my ul li list in css? -


i have following html code:

<section class="video">             <div class="container">                 <div class="row">                     <div class="col-md-12 text-center">                          <ul class="footer-nav">                             <li><a href="#">contact</a></li>                             <li><a href="#">press</a></li>                             <li><a href="#">careers</a></li>                             <li><a href="#">business</a></li>                             <li><a href="#">careers</a></li>                             <li><a href="#">business</a></li>                         </ul>                      </div>                 </div>             </div>         </section> 

and css included (in jsfiddle) result text aligned left... how can center everything, result says:

                  contact  press  careers  business  careers  bussiness  

? thanks.

http://jsfiddle.net/tflz08vd/2/

just add

ul { text-align: center; }  li { display: inline-block; } 

good luck! ;)


Comments

Popular posts from this blog

c# - Validate object ID from GET to POST -

node.js - Custom Model Validator SailsJS -

php - Find a regex to take part of Email -