首页 诗词 字典 板报 句子 名言 友答 励志 学校 网站地图
当前位置: 首页 > 教程频道 > 网站开发 > CSS >

【CSS】领航子菜单绝对定位IE总是差一半。都两天啦,还没解决

2013-02-15 
【CSS】导航子菜单绝对定位IE总是差一半。。。都两天啦,还没解决十万火急!!!直接上代码。兄弟弟妹们,洒泪拜托了。

【CSS】导航子菜单绝对定位IE总是差一半。。。都两天啦,还没解决
十万火急!!!直接上代码。兄弟弟妹们,洒泪拜托了。


<!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">
<head>
<meta http-equiv="Content-Type" content="text/html; charset=gb2312" />
<title>简洁的纯CSS下拉菜单代码</title>
<style>
#sddm
{margin:0 auto;
padding: 0;
z-index: 30;
background-color:#F4F4F4;
width: 81px;
height:23px;}

#sddm li
{margin: 0;
padding: 0;
list-style: none;
float: left;
width:81px;
font: bold 12px arial}

#sddm li a
{display: block;
margin: 0 1px 0 0;
padding: 5px 0px;
width:auto;
background: #5970B2;
color: #FFF;
text-align: center;
text-decoration: none}

#sddm li a:hover
{background: #49A3FF}

#sddm div
{position: absolute;
visibility: hidden;
margin:-23 0 0 80px;
padding: 0;
background: #EAEBD8;
border: 1px solid #5970B2}

#sddm div a
{position: relative;
display: block;
margin: 0;
padding: 5px 0px;
width: auto;
white-space: nowrap;
text-align: left;
text-decoration: none;
background: #EAEBD8;
color: #2875DE;
font: 12px arial}

#sddm div a:hover
{background: #49A3FF;
color: #FFF}
</style>
<!-- dd menu -->
<script type="text/javascript">
<!--
var timeout         = 500;
var closetimer= 0;
var ddmenuitem      = 0;

// open hidden layer
function mopen(id)
{
// cancel close timer
mcancelclosetime();

// close old layer
if(ddmenuitem) ddmenuitem.style.visibility = 'hidden';

// get new layer and show it
ddmenuitem = document.getElementById(id);
ddmenuitem.style.visibility = 'visible';

}
// close showed layer
function mclose()
{
if(ddmenuitem) ddmenuitem.style.visibility = 'hidden';
}

// go close timer
function mclosetime()
{
closetimer = window.setTimeout(mclose, timeout);
}

// cancel close timer
function mcancelclosetime()
{
if(closetimer)
{
window.clearTimeout(closetimer);
closetimer = null;
}
}

// close layer when click-out
document.onclick = mclose; 
// -->
</script>
</head>

<body style="text-align:center">
<div>
<ul id="sddm">
<li><a href="#" onmouseover="mopen('m1')" onmouseout="mclosetime()">Home</a>
<div id="m1" onmouseover="mcancelclosetime()" onmouseout="mclosetime()">
<a href="#">HTML DropDown</a>
<a href="#">DHTML DropDown menu</a>
<a href="#">JavaScript DropDown</a>
<a href="#">DropDown Menu</a>
<a href="#">CSS DropDown</a>


</div>
</li>
<li><a href="#" onmouseover="mopen('m2')" onmouseout="mclosetime()">Download</a>
<div id="m2" onmouseover="mcancelclosetime()" onmouseout="mclosetime()">
<a href="#">ASP Dropdown</a>
<a href="#">Pulldown menu</a>
<a href="#">AJAX dropdown</a>
<a href="#">DIV dropdown</a>
</div>
</li>
<li><a href="#" onmouseover="mopen('m3')" onmouseout="mclosetime()">Order</a>
<div id="m3" onmouseover="mcancelclosetime()" onmouseout="mclosetime()">
<a href="#">Visa Credit Card</a>
<a href="#">Paypal</a>
</div>
</li>
<li><a href="#" onmouseover="mopen('m4')" onmouseout="mclosetime()">Help</a>
<div id="m4" onmouseover="mcancelclosetime()" onmouseout="mclosetime()">
<a href="#">Download Help File</a>
<a href="#">Read online</a>
</div>
</li>
<li><a href="#" onmouseover="mopen('m5')" onmouseout="mclosetime()">Contact</a>
<div id="m5" onmouseover="mcancelclosetime()" onmouseout="mclosetime()">
<a href="#">E-mail</a>
<a href="#">Submit Request Form</a>
<a href="http://www.codefans.net/" target="_blank">codefans.net</a>
</div>
</li>
</ul>
</div>
</body>
</html>


[解决办法]
ie6显示不正常么?ie9没问题呀
[解决办法]
对于 垂直导航条,很简单  框架这样设置:

#sddm
{    margin:0 ;
    padding: 0;
    list-style: none;
    z-index: 30;
    background-color:#F4F4F4;     
    width: 100px;
    height:23px;
 }
 
#sddm li
{     
   display:inline; 
   font : bold 12px arial}
 
#sddm li a
{    display: block;
    margin: 0 1px 0 0;
    padding: 5px 0px;  
    background: #5970B2;
    color: #FFF;
    text-align: center;
    text-decoration: none
}
 其他的 按照你设置的写即可

热点排行