Jump to content
  • 0

меню сделанное на CSS под все браузеры.


pirogkoff
 Share

Question

Как сделать так, чтобы меню навигации созданное с помощью CSS корректно отображалось на всех браузерах. У меня у самого Опера, все нормально работает, а вот проверяли на Explorer'е - нифига подменю не вылазеет, чо делать, подскажите пожалста.

<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01//EN" "http://www.w3.org/TR/html4/strict.dtd">

<html>

<head>

<meta http-equiv="Content-Type" content="text/html; charset=windows-1251">

<title>hover</title>

<style type="text/css">

UL {

width: 180px; /* Ширина меню */

list-style: none; /* Для списка убираем маркеры */

margin: 0; /* Нет отступов вокруг */

padding: 0; /* Убираем поля вокруг текста */

font-family: Arial, sans-serif; /* Рубленый шрифт для текста меню */

font-size: 10pt; /* Размер названий в пункте меню */

}

UL LI {

position: relative; /* Подпункты позиционируются относительно */

}

LI UL {

position: absolute; /* Подменю позиционируются абсолютно */

display: none; /* Скрываем подменю */

top: 0; /* По высоте положение подменю исходное */

left: 179px; /* Сдвигаем подменю вправо */

z-index: 1; /* Основное меню находится ниже подменю */

}

LI A {

display: block; /* Ссылка как блочный элемент */

width: 100%; /* Ссылка на всю ширину пункта */

padding: 5px; /* Поля вокруг надписи */

text-decoration: none; /* Подчеркивание у ссылок убираем */

color: #666; /* Цвет текста */

border: 1px solid #ccc; /* Рамка вокруг пунктов меню */

background-color: #f0f0f0; /* Цвет фона */

border-bottom: none; /* Границу снизу не проводим */

}

LI A:hover {

color: #ffe; /* Цвет текста активного пункта */

background-color: #5488af; /* Цвет фона активного пункта */

}

LI:hover UL, LI.over UL {

display: block; /* При выделении пункта курсором мыши отображается подменю */

}

.brd {

border-bottom: 1px solid #ccc; /* Линия снизу */

}

</style>

</head>

<body>

<ul id="menu">

<li><a href="russian.html">Русская кухня</a>

<ul>

<li><a href="linkr1.html">Бефстроганов</a></li>

<li><a href="linkr2.html">Гусь с яблоками</a></li>

<li><a href="linkr3.html">Крупеник новгородский</a></li>

<li><a href="linkr4.html" class="brd">Раки по-русски</a></li>

</ul>

</li>

<li><a href="ukrainian.html">Украинская кухня</a>

<ul>

<li><a href="linku1.html">Вареники</a></li>

<li><a href="linku2.html">Жаркое по-харьковски</a></li>

<li><a href="linku3.html">Капустняк черниговский</a></li>

<li><a href="linku4.html" class="brd">Потапцы с помидорами</a></li>

</ul>

</li>

<li><a href="caucasus.html">Кавказская кухня</a>

<ul>

<li><a href="linkc1.html">Суп-харчо</a></li>

<li><a href="linkc2.html">Лилибдж</a></li>

<li><a href="linkc3.html">Чихиртма</a></li>

<li><a href="linkc4.html" class="brd">Шашлык</a></li>

</ul>

</li>

<li><a href="asia.html" class="brd">Кухня Средней Азии</a></li>

</ul>

</body>

</html>

Link to comment
Share on other sites

4 answers to this question

Recommended Posts

  • 0

IE не воспринимает :hover на что-то другое кроме <a>.

Исправляется через js

startList = function() { if (document.all&&document.getElementById) { navRoot = document.getElementById("nav"); for (i=0; i<navRoot.childNodes.length; i++) { node = navRoot.childNodes[i]; if (node.nodeName=="LI") { node.onmouseover=function() { this.className+=" over"; } node.onmouseout=function() { this.className=this.className.replace »  (" over", ""); } } } } } window.onload=startList;

Статьи на тему:

http://www.webmascon.com/topics/coding/42a.asp

http://vremenno.net/html-css/css-drop-down-menu/

Онлайн сервис для создания выпадающих менюшек:

http://purecssmenu.com/

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