css li center in ul code example
Example 1: have unordered list horizontal css
#div_top_hypers {
background-color:#eeeeee;
display:inline;
}
#ul_top_hypers li{
display: inline;
}
Example 2: center unordered list html
ul {
display: table;
margin: 0 auto;
}