Jump to content
  • 0

Новичок. Помогите, пожалуйста, по верстке.


Stranger
 Share

Question

Проблема в следующем: выпадающее меню сдвигает остальные блоки, вместо того, чтобы просто отображаться поверх.

Приношу извинения, если такая тема была ранее, но не нашел. Все, что находил - не помогало.

Привожу код.

Разметка

<!DOCTYPE html>
<html lang="ru" >
<head>
<meta charset="windows-1251" />
<title></title>

<link href="css/style.css" rel="stylesheet" type="text/css" />
</head>
<body>
<div id="menu">
<ul id="nav">
<li><a href="#">Главная</a></li>
<li><a href="#">Навигация</a>
<ul>
<li><a href="#">Карта сайта</a></li>
<li><a href="#">Меню 2_2</a></li>
<li><a href="#">Меню 2_3</a></li>
<li><a href="#">Меню 2_4</a></li>
</ul>
</li>
<li><a href="#">Дополнительно</a></li>
<li><a href="#">Информация</a></li>
<li><a href="#">Контакты</a></li>
<div id="effect"></div>
</ul>
</div>



</body>
</html>

стили

body{background-color:black;}
#nav {
margin:0 auto;
overflow:hidden;
list-style:none;
padding:0;
position:relative;
text-align:center;
width:900px;
}
#nav li {
padding:10px 0;
}
#nav a {
color: #999;
font: bold 12px Arial, Helvetica;
text-decoration:none;
text-shadow: 0 1px 0 #000;
}
#menu ul li {
border:1px solid black;
border-radius:4px;
float:left;
position:relative;
text-decoration:none;
text-transform:uppercase;
width:178px;
}
#nav a:hover {
color:#00b0d3;
}
#menu ul ul {
display:none;
position:relative;
}
#menu ul li:hover > ul {
display:block;
list-style:none;

}
#menu ul ul li {
position:relative;
right:40px;
top:10px;
width:178px;
border-top:1px dotted #999;
}

Заранее спасибо.

Edited by alexriz
Используйте для кода тег CODE!!!
Link to comment
Share on other sites

4 answers to this question

Recommended Posts

  • 0

В том то и проблема. Пробовал, но в таком случае меню вообще не выпадает. Может, еще каким советом поможете? Может, я где0то изначально ошибся в позиционировании родительских/дочерних элементо.

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