• 下拉菜单


    <html xmlns="http://www.w3.org/1999/xhtml" lang="zh-CN"> 
    <head> 
    <meta http-equiv="Content-Type" content="text/html; charset=gb2312" /> 
    <title>css</title> 
    <style type="text/css"> 
    <!-- 
    *{margin:0;padding:0;border:0;} 
    body { 
    font-family: arial, ??, serif; 
    font-size:12px; 
    } 
    #nav { 
    line-height: 24px; list-style-type: none; background:#666; 
    } 
    #nav a { 
    display: block; width: 80px; text-align:center; 
    } 
    #nav a:link { 
    color:#666; text-decoration:none; 
    } 
    #nav a:visited { 
    color:#666;text-decoration:none; 
    } 
    #nav a:hover { 
    color:#FFF;text-decoration:none;font-weight:bold; 
    } 
    #nav li { 
    float: left; width: 80px; background:#CCC; 
    } 
    #nav li a:hover{ 
    background:#999; 
    } 
    #nav li ul { 
    line-height: 27px; list-style-type: none;text-align:left; 
    left: -999em; width: 180px; position: absolute; 
    } 
    #nav li ul li{ 
    float: left; width: 180px; 
    background: #F6F6F6; 
    } 
    #nav li ul a{ 
    display: block; width: 156px;text-align:left;padding-left:24px; 
    } 
    #nav li ul a:link { 
    color:#666; text-decoration:none; 
    } 
    #nav li ul a:visited { 
    color:#666;text-decoration:none; 
    } 
    #nav li ul a:hover { 
    color:#F3F3F3;text-decoration:none;font-weight:normal; 
    background:#C00; 
    } 
    #nav li:hover ul { 
    left: auto; 
    } 
    #nav li.sfhover ul { 
    left: auto; 
    } 
    #content { 
    clear: left; 
    } 
    --> 
    </style> 
    <script type=text/javascript><!--//--><![CDATA[//><!-- 
    function menuFix() { 
    var sfEls = document.getElementById("nav").getElementsByTagName("li"); 
    for (var i=0; i<sfEls.length; i++) { 
    sfEls[i].onmouseover=function() { 
    this.className+=(this.className.length>0? " ": "") + "sfhover"; 
    } 
    sfEls[i].onMouseDown=function() { 
    this.className+=(this.className.length>0? " ": "") + "sfhover"; 
    } 
    sfEls[i].onMouseUp=function() { 
    this.className+=(this.className.length>0? " ": "") + "sfhover"; 
    } 
    sfEls[i].onmouseout=function() { 
    this.className=this.className.replace(new RegExp("( ?|^)sfhover\b"), 
    ""); 
    } 
    } 
    } 
    window.onload=menuFix; 
    //--><!]]></script> 
    </head> 
    <body> 
    <ul id="nav"> 
    <li><a href="#" _fcksavedurl="#">Menu1</a> 
    <ul> 
    <li><a href="#" _fcksavedurl="#">Menu11</a></li> 
    <li><a href="#" _fcksavedurl="#">Menu12</a></li> 
    <li><a href="#" _fcksavedurl="#">Menu13</a></li> 
    <li><a href="#" _fcksavedurl="#">Menu14</a></li> 
    <li><a href="#" _fcksavedurl="#">Menu15</a></li> 
    <li><a href="#" _fcksavedurl="#">Menu16</a></li> 
    </ul> 
    </li> 
    <li><a href="#" _fcksavedurl="#">Menu2</a> 
    <ul> 
    <li><a href="#" _fcksavedurl="#">Menu21</a></li> 
    <li><a href="#" _fcksavedurl="#">Menu22</a></li> 
    <li><a href="#" _fcksavedurl="#">Menu23</a></li> 
    <li><a href="#" _fcksavedurl="#">Menu24</a></li> 
    <li><a href="#" _fcksavedurl="#">Menu25</a></li> 
    <li><a href="#" _fcksavedurl="#">Menu26</a></li> 
    </ul> 
    </li> 
    </ul> 
    
    </body> 
    </html>
  • 相关阅读:
    方法引用
    day2
    柯朗数(Courant number)研究
    Socket网络编程学习一
    自制导航
    HighChart 体验之旅 (后台传递JSON参数和数据的方法)
    HighChart体验之旅2 对HighChart控件的再次封装
    委托学习小计
    面试常用SQL整理
    动态LINQ(Lambda表达式)构建
  • 原文地址:https://www.cnblogs.com/jianlun/p/4703850.html
Copyright © 2020-2023  润新知