Jump to content
  • 0

Выпадающее меню с помощью тегов <ul>, <li>


Юрий
 Share

Question

Идея заключается в том, чтобы из списка сделать рубрикатор с выпадающими подрубриками. В FireFox всё работает нормально, в IE6 возникают проблемы:

Так должно быть:

1.gif

Так в IE6:

2.gif

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

<html xmlns="http://www.w3.org/1999/xhtml" xml:lang="ru" lang="ru">

<head>
<title></title>
<style type="text/css">
/*<![CDATA[*/

ul
{
width: 600px;
list-style: none;
}

ul li
{
width: 278px;
float: left;
position: relative;

background: #D0D0D0;
border: 1px solid #909090;
padding: 5px 0;
margin: 5px;
font: 100 12px Arial;
}

li ul
{
background: #ccc;
width: 278px;
position: absolute;
z-index: 999;

top: 25px;
left: -1px;
list-style: none;
margin: 0;
padding: 0;
border: 1px solid #909090;
}

li ul li
{
background: #008000;
padding: 2px 0;
margin: 0;
border: 0;
}

/*]]>*/
</style>
</head>

<body>

<ul>
<li>Раздел рубрикатора
<ul>
<li>Подразделы</li>
<li>Подразделы</li>
<li>Подразделы</li>
<li>Подразделы</li>
<li>Подразделы</li>
<li>Подразделы</li>
<li>Подразделы</li>
<li>Подразделы</li>
<li>Подразделы</li>
<li>Подразделы</li>
<li>Подразделы</li>
<li>Подразделы</li>
</ul>
</li>
<li>Раздел рубрикатора</li>
<li>Раздел рубрикатора</li>
<li>Раздел рубрикатора</li>
<li>Раздел рубрикатора</li>
<li>Раздел рубрикатора</li>
<li>Раздел рубрикатора</li>
</ul>

</body>

</html>

Edited by Юрий
Link to comment
Share on other sites

2 answers to this question

Recommended Posts

  • 0
из ul li уберите position: relative;

и ставьте его при событии hover на ul li (ul li:hover),

только для ие6 нужен будет небольшой скриптик чтобы научить его понимать ul li:hover

Спасибо, решение оказалось проще чем я думал. Скриптик есть для IE6

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