Jump to content
  • 0

Выравнивание вертикального списка.


mozart
 Share

Question

Есть меню сделанное по средствам CSS горизонтальным с выпадающими списками, нада его отцентрировать в родителе. Как это сделать? вот упрощенный кусок кода:

ul#hor {list-style:none; margin:0; padding:0; color:#000066; font-weight:bold;}
ul#hor li {display:block; float:left; border-left:#dadada solid 1px; height:46px; padding:0 10px;}
ul#hor li a {display:block; margin-top:10px;}

<ul id="hor">

<li><a href="#">item1</a></li>
<li><a href="#">item2</a></li>
<li><a href="#">item3</a></li>

</ul>

из-за float:left менюха прижимается к левому краю родителя, а нада по центру..

Link to comment
Share on other sites

2 answers to this question

Recommended Posts

  • 0

<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">

<div class="main">
<ul>
<li>test</li>
<li>test</li>
<li>test</li>
<li>test</li>
<li>test</li>
<li>test</li>
</ul>
</div>

.main {
text-align:center; /*центрирование для IE*/
}
.main ul {
font-weight:bold;
text-align:left;
/*центрирование для нормальных браузеров*/
display:table;
margin:0 auto;
/*******************/
zoom:1; /*чтобы не схлопывалось для IE*/
display:inline-block; /*hasLayout для IE*/
}
*html .main ul {
display:inline;
}
*+html .main ul {
display:inline;
}
/*чтобы не схлопывалось для нормальный браузеров*/
.main ul:after {
content: "";
display:block;
clear:both;
}
/*******************************/
.main ul li {
float:left;
border-right:1px solid #dadada;
height:46px;
padding:0 10px;
}

Link to comment
Share on other sites

Join the conversation

You can post now and register later. If you have an account, sign in now to post with your account.
Note: Your post will require moderator approval before it will be visible.

Guest
Answer this question...

×   Pasted as rich text.   Paste as plain text instead

  Only 75 emoji are allowed.

×   Your link has been automatically embedded.   Display as a link instead

×   Your previous content has been restored.   Clear editor

×   You cannot paste images directly. Upload or insert images from URL.

 Share

×
×
  • Create New...

Important Information

We have placed cookies on your device to help make this website better. You can adjust your cookie settings, otherwise we'll assume you're okay to continue. See more about our Guidelines and Privacy Policy