zoukankan      html  css  js  c++  java
  • 当前项为缺口横向菜单代码

    代码简介:

    当前项为缺口横向纯CSS菜单,也就是鼠标放上后菜单出现缺口,可以清淅的指示出当前的位置,而且用户操作体验也不错,个人比较喜欢这种风格,没有用到图片什么的修饰性东西,因些实用性大大增强。

    代码内容:

    <!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>当前项为缺口横向菜单代码_网页代码站(www.webdm.cn)</title>
    <style type="text/css">
    <!--
    #navcontainer
    {
    padding: 0;
    background: #ccc;
    height: 20px;
    }
    
    #navlist
    {
    margin: 0px;
    padding: 0px 0px;
    display: block;
    }
    
    #navlist li
    {
    list-style: none;
    float: left;
    }
    
    #navcontainer a, #navlist li.extend
    {
    margin: 0px;
    display: block;
    border-top: 1px solid #333;
    padding: 1px 6px;
    text-decoration: none;
    background: #ccc;
    font: normal 12px verdana, serif;
    color: #000;
    }
    
    #navcontainer a:hover, #navcontainer a#current
    {
    padding: 1px 5px;
    background: #FAFAFA;
    border-right: 1px solid #333;
    border-left: 1px solid #333;
    border-top: 1px solid #FAFAFA;
    border-bottom: 1px solid #333;
    color: green;
    }
    
    #navcontainer a#current
    {
    background: #F6F6F6;
    border-top: 1px solid #F6F6F6;
    font-weight: bold;
    }
    
    #navcontainer li#active
    {
    border-right: 2px solid #828282;
    border-bottom: 2px solid #828282;
    }
    
    -->
    </style>
    </head>
    
    <body>
    <div id="navcontainer">
    <ul id="navlist">
    <li id="active"><a href="#">Item one</a></li>
    <li><a href="#"  id="current">Item two</a></li>
    <li><a href="#">Item three</a></li>
    <li><a href="#">Item four</a></li>
    <li><a href="#">Item five</a></li>
    </ul>
    </div>
    </body>
    </html>
    <br>
    <p><a href="http://www.webdm.cn">网页代码站</a> - 最专业的代码下载网站 - 致力为中国站长提供有质量的代码!</p>
    

    代码来自:http://www.webdm.cn/webcode/7fb8a830-0a59-4e52-903e-6fa830652e60.html

  • 相关阅读:
    oracle查看所有角色
    jQuery 异步提交表单实例解析
    oracle查看用户系统权限
    js中日期操作大全
    oracle 查询用户下所有表
    JS语法字典
    JS定时器例子讲解
    开源软件
    rpm的使用
    lvs+keepalived和haproxy+heartbeat区别
  • 原文地址:https://www.cnblogs.com/webdm/p/1999700.html
Copyright © 2011-2022 走看看