css 下拉菜单不适用于 IES6

发布于 2024-12-08 12:18:32 字数 3853 浏览 0 评论 0原文

我有一个 CSS 菜单,适用于所有新浏览器,但不适用于 IES 6。 我尝试了很多,但这没有用...... 任何解决办法。

菜单代码是

<div class="nav-container-outer"> 
            <ul id="nav-container" class="nav-container">
                <li><a class="item-primary" href="index.html">Home</a> </li>
                <li><a class="item-primary" href="#">About us</a>
        <ul>
        <li><a class="item-primary" href="vision.html">Vision </a> </li>
        <li><a class="item-primary" href="manage.html">Management</a> </li>         <li><a class="item-primary" href="faq.html">FAQ</a> </li>
    </ul>
     </div>

CSS 代码如下

/*^'^ Navigation Structure ^'^*/
.nav-container-outer{
background: #990000;
padding: 0px;
height: 39px;
background: url(images/nav-bg.jpg);
}
.float-left{
float: left;
}
.float-right{
float: right;
}
.nav-container .divider{
display:block;
font-size:1px;
border-width:0px;
border-style:solid;
}
.nav-container .divider-vert{
float:left;
width:0px;
display: none;
}
.nav-container .item-secondary-title{
display:block;
cursor:default;
white-space:nowrap;
}
.clear{
font-size:1px;
height:0px;
width:0px;
clear:left;
line-height:0px;
display:block;
float:none;
}
.nav-container{
position:relative;
zoom:1;
margin: 0 auto;
}
.nav-container a, .nav-container li{
float:left;
display:block;
white-space:nowrap;
}
.nav-container div a, .nav-container ul a, .nav-container ul li{
float:none;
}
.nav-container ul{
left:-10000px;
position:absolute;
}
.nav-container, .nav-container ul{
list-style:none;
padding:0px;
margin:0px;
}
.nav-container li a{
float:none
}
.nav-container li{
position:relative;
}
.nav-container ul{
z-index:10;
}
.nav-container ul ul{
z-index:20;
}
.nav-container ul ul ul{
z-index:30;
}
.nav-container ul ul ul ul{
z-index:40;
}
.nav-container ul ul ul ul ul{
z-index:50;
}
li:hover>ul{
left:auto;
}
#nav-container ul {
top:100%;
}
#nav-container ul li:hover>ul{
top:0px;
left:100%;
}

/*^'^ Primary Items ^'^*/   
#nav-container a{   
padding:2px 34px 7px 15px;
margin: 10px 0px 0px 0px;
color: #003450;
font-family: Trebuchet MS, Arial, sans-serif, Helvetica;
font-size:14px;
text-decoration:none;
font-weight: bold;
background-repeat: no-repeat;
background-position: top;
}

#nav-container a:hover{
color: #fff;
background-repeat: no-repeat;
background-position: center;
}

/*^'^ Secondary Items Container ^'^*/   
#nav-container div, #nav-container ul{  
padding:10px 4px 10px 4px;
margin:0px 0px 0px 0px;
background:#7ACFF4;
background-repeat: repeat-x;
border-bottom: 1px solid #003450;
}

/*^'^ Secondary Items ^'^*/ 
#nav-container div a, #nav-container ul a{  
padding:3px 10px 3px 6px;
background-color: #FFFFFF;
background: url(images/item-secondary-bg.jpg);
background-repeat: no-repeat;
background-position: 0px 22px;
font-size:11px;
border-width:0px;
border-style:none;
margin: 0px 0px 0px 0px;
width: 149px;
}

/*^'^ Secondary Items Hover State ^'^*/ 
#nav-container div a:hover, #nav-container ul a:hover{  
background-color: #FFFFFF;
background: url(images/item-secondary-bg.jpg);
background-repeat: no-repeat;
color:#ffffff;
}

/*^'^ Secondary Item Titles ^'^*/   
#nav-container .item-secondary-title{   
cursor:default;
padding:4px 0px 3px 7px;
color: #6C3600;
font-family: Arial, Trebuchet MS, Arial, sans-serif, Helvetica;
font-size:11px;
/* background: url(images/item-secondary-title-bg.jpg); */
background-repeat: no-repeat;
font-weight:bold;
}

/*^'^ Horizontal Dividers ^'^*/ 
#nav-container .divider-horiz{  
border-top-width:1px;
margin:5px 5px;
border-color: #C16100;
}

/*^'^ Vertical Dividers ^'^*/   
#nav-container .divider-vert{   
border-left-width:1px;
height:15px;
margin:4px 2px 0px 2px;
border-color:#AAAAAA;
}

i have one CSS menu which works fine with all new browsers but not working with IES 6.
i tried alot but this did't work...
any fix for that.

Menu Code is

<div class="nav-container-outer"> 
            <ul id="nav-container" class="nav-container">
                <li><a class="item-primary" href="index.html">Home</a> </li>
                <li><a class="item-primary" href="#">About us</a>
        <ul>
        <li><a class="item-primary" href="vision.html">Vision </a> </li>
        <li><a class="item-primary" href="manage.html">Management</a> </li>         <li><a class="item-primary" href="faq.html">FAQ</a> </li>
    </ul>
     </div>

CSS Code is bellow

/*^'^ Navigation Structure ^'^*/
.nav-container-outer{
background: #990000;
padding: 0px;
height: 39px;
background: url(images/nav-bg.jpg);
}
.float-left{
float: left;
}
.float-right{
float: right;
}
.nav-container .divider{
display:block;
font-size:1px;
border-width:0px;
border-style:solid;
}
.nav-container .divider-vert{
float:left;
width:0px;
display: none;
}
.nav-container .item-secondary-title{
display:block;
cursor:default;
white-space:nowrap;
}
.clear{
font-size:1px;
height:0px;
width:0px;
clear:left;
line-height:0px;
display:block;
float:none;
}
.nav-container{
position:relative;
zoom:1;
margin: 0 auto;
}
.nav-container a, .nav-container li{
float:left;
display:block;
white-space:nowrap;
}
.nav-container div a, .nav-container ul a, .nav-container ul li{
float:none;
}
.nav-container ul{
left:-10000px;
position:absolute;
}
.nav-container, .nav-container ul{
list-style:none;
padding:0px;
margin:0px;
}
.nav-container li a{
float:none
}
.nav-container li{
position:relative;
}
.nav-container ul{
z-index:10;
}
.nav-container ul ul{
z-index:20;
}
.nav-container ul ul ul{
z-index:30;
}
.nav-container ul ul ul ul{
z-index:40;
}
.nav-container ul ul ul ul ul{
z-index:50;
}
li:hover>ul{
left:auto;
}
#nav-container ul {
top:100%;
}
#nav-container ul li:hover>ul{
top:0px;
left:100%;
}

/*^'^ Primary Items ^'^*/   
#nav-container a{   
padding:2px 34px 7px 15px;
margin: 10px 0px 0px 0px;
color: #003450;
font-family: Trebuchet MS, Arial, sans-serif, Helvetica;
font-size:14px;
text-decoration:none;
font-weight: bold;
background-repeat: no-repeat;
background-position: top;
}

#nav-container a:hover{
color: #fff;
background-repeat: no-repeat;
background-position: center;
}

/*^'^ Secondary Items Container ^'^*/   
#nav-container div, #nav-container ul{  
padding:10px 4px 10px 4px;
margin:0px 0px 0px 0px;
background:#7ACFF4;
background-repeat: repeat-x;
border-bottom: 1px solid #003450;
}

/*^'^ Secondary Items ^'^*/ 
#nav-container div a, #nav-container ul a{  
padding:3px 10px 3px 6px;
background-color: #FFFFFF;
background: url(images/item-secondary-bg.jpg);
background-repeat: no-repeat;
background-position: 0px 22px;
font-size:11px;
border-width:0px;
border-style:none;
margin: 0px 0px 0px 0px;
width: 149px;
}

/*^'^ Secondary Items Hover State ^'^*/ 
#nav-container div a:hover, #nav-container ul a:hover{  
background-color: #FFFFFF;
background: url(images/item-secondary-bg.jpg);
background-repeat: no-repeat;
color:#ffffff;
}

/*^'^ Secondary Item Titles ^'^*/   
#nav-container .item-secondary-title{   
cursor:default;
padding:4px 0px 3px 7px;
color: #6C3600;
font-family: Arial, Trebuchet MS, Arial, sans-serif, Helvetica;
font-size:11px;
/* background: url(images/item-secondary-title-bg.jpg); */
background-repeat: no-repeat;
font-weight:bold;
}

/*^'^ Horizontal Dividers ^'^*/ 
#nav-container .divider-horiz{  
border-top-width:1px;
margin:5px 5px;
border-color: #C16100;
}

/*^'^ Vertical Dividers ^'^*/   
#nav-container .divider-vert{   
border-left-width:1px;
height:15px;
margin:4px 2px 0px 2px;
border-color:#AAAAAA;
}

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

薆情海 2024-12-15 12:18:32

遗憾的是,Internet Explorer(5 和)6 不支持/理解/尊重在 a 元素以外的任何元素上使用 :hover。因此,IE6 兼容性的下拉菜单几乎总是在 li 中使用 a 元素。

不幸的是,我无法建议 IE6 兼容下拉/弹出菜单的工作标记,因为我无法访问运行 IE6 的计算机;然而,cssplay.co.uk 出现了一个有趣的页面:

  1. 多级弹出菜单(仅限 CSS)

参考资料:

Internet Explorer (5 and) 6 doesn't support/understand/respect the use of :hover on any elements other than a elements, sadly. So drop downs for IE6 compatibility almost always use a elements within the lis.

I am, unfortunately, unable to suggest working markup for IE6 compatible drop-down/fly-out menus, since I have no access to a computer running IE6; however an interesting page turned up over at cssplay.co.uk:

  1. Multi-level fly-out menu (CSS-only).

References:

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文