Horizontally Center Items - display: inline-block

Elements are dynamically centered without the container being centered with a fixed with. Inline blocks are used to achieve this. Support: IE7+ and modern browsers.

HTML

<ul>
    <li><a href="#">Home</a></li>
    <li><a href="#">Careers</a></li>
    <li><a href="#">About</a></li>
    <li><a href="#">Contact</a></li>
</ul>

CSS

ul { margin-top: 10px; text-align: center; }
li { display: inline-block;  padding: 5px 0; margin-left: 5px; }
li:first-child { margin-left: 0; }

/* IE7 Hack - http://www.brunildo.org/test/InlineBlockLayout.html */
li { *display: inline; zoom: 1; }

JavaScript

/* 
    Browser support: IE7+ and modern browsers.
*/