61,126
社区成员
发帖
与我相关
我的任务
分享
#wrap{
width:960px;
margin:0 auto;
}
/* --============================ 主导航 ================================-- */
#nav{
height:40px;
overflow:hidden;
}
#nav ul li{
width:120px;
height:40px;
float:left;
position:relative;
z-index:20px;
}
#nav ul li a{
display:block;
width:120px;
height:40px;
font:900 20px/40px Arial, Helvetica, sans-serif;
text-align:center;
background:#CC0000;
color:#CCFF00;
text-decoration:none;
}
#nav ul li a:hover{
background:#CCFF00;
color:#CC0000;
}
#nav ul li div.outOff{
width:120px;
height:100px;
background:#33FFFF;
color:#000000;
position:absolute;
left:0px;
top:40px;
z-index:1;
}
/* --============================ 主导航(结束) ================================-- */
<!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=utf-8" />
<title>众联教育</title>
<link href="css/init.css" rel="stylesheet" type="text/css" />
<link href="css/mainStyle.css" rel="stylesheet" type="text/css" />
</head>
<body>
<div id="wrap">
<!-- 主导航 -->
<div id="nav">
<ul>
<li>
<a href="#">网站首页</a>
</li>
<li>
<a href="#">学校简介</a>
</li>
<li>
<a href="#">IT培训</a>
<div class="outOff">
<span>培训课程</span>
<span>报名条件</span>
<span>名师介绍</span>
<span>学员风彩</span>
</div>
</li>
<li>
<a href="#">金融培训</a>
<div class="outOff">
<span>培训课程</span>
<span>报名条件</span>
<span>名师介绍</span>
<span>合作单位</span>
<span>证书样本</span>
<span>参考教材</span>
</div>
</li>
<li>
<a href="#">建筑培训</a>
</li>
<li>
<a href="#">师资团队</a>
</li>
<li>
<a href="#">校长寄语</a>
</li>
<li>
<a href="#">学历教育</a>
<div class="outOff">
<span>专起本</span>
<span>高起本</span>
<span>工程硕士</span>
</div>
</li>
</ul>
</div>
<!-- 主导航(结束) -->
</div>
</body>
</html>
#nav{
height:40px;
overflow:hidden;
}