Help, please, I just can not set the list in the center of the block. I have already tried to set text-align:center
both for the block and for the list, and even margin:0
for the list I did, but it does not help either.
css:
#menu { width: 100 % ; height: 40px; text-align: center } ul.top - menu { margin: 0 auto; /*border:1px solid black*/ } ul.top - menu li { width: 150px; height: 40px; line-height: 40px; float: left; /*border:1px solid black*/ }
html:
<div id="menu"> <ul class="top-menu"> <li><a href="">Главная</a> </li> <li><a href="">Общение</a> </li> <li><a href="">Файлы</a> </li> <li><a href="">Новости</a> </li> <li><a href="">Биография</a> </li> </ul> </div>