Skip to content Skip to sidebar Skip to footer

Centering An Ul Inside A Div

#nav { border-style:solid; width:500px; height:20px; margin-top:200px; margin-left:auto; margin-right:auto; } #nav ul { list-style-type:none; width:100%; display:block; margin-

Solution 1:

I think this should do the trick:

#nav {
    text-align: center;
}
#nav ul {
    margin: 0 auto; 
    text-align: left;
}

Post a Comment for "Centering An Ul Inside A Div"