After applying "margin: 0 auto" to an unordered list, a horizontal nav bar, I am able to center the list element but the items contained within the list are left justified within the list. The examples I've seen online don't say anything about having to re-position the li elements so I suspect I'm doing something wrong. I can see that the list is actually centered because of the black border I have placed around it but the items are not.
#navBarList
{
width: 25%;
margin: 0 auto;
list-style-type: none;
overflow: hidden;
border-width: 3px;
border-color: black;
border-style: solid;
}
#navBarList li
{
float: left;
}
---------------------------------
<div id="navBarDiv">
<ul id="navBarList">
<li>Plots</li>
<li>Reports</li>
<li>Map</li>
</ul>
</div>