zoukankan      html  css  js  c++  java
  • 两款CSS按钮式水平菜单,蓝色和绿色

    演示效果截图

    CSS按钮式菜单
    

    用到的图片

    
    

    CSS代码

    .hbuttons a{display: block;text-decoration: none;font: bold 13px Arial;
    color: black; 78px;height: 23px;float: left;display: inline;
    margin-right: 8px;background-image:url(tabsquare.jpg);background-repeat: no-repeat;
    padding-top: 4px;text-align:center;}
    .hbuttons a:hover{background-image:url(tabsquareover.jpg);}
    .bbuttons a{display: block;text-decoration: none;font: bold 13px Arial;
    color: black; 78px;height: 23px;float: left;display: inline;
    margin-right: 8px;background-image:url(menu.jpg);background-repeat: no-repeat;
    padding-top: 4px;text-align:center;}
    .bbuttons a:hover{background-image:url(menuover.jpg);}

    HTML代码

    <div class="hbuttons">
    <a href="http://www.865171.cn">Home</a>
    <a href="http://www.865171.cn">Submit</a>
    <a href="http://www.865171.cn">Resources</a>
    <a href="http://www.865171.cn">Contact</a>
    </div>
    <div style="clear: left;"></div>
    <div class="bbuttons">
    <a href="http://www.865171.cn">Home</a>
    <a href="http://www.865171.cn">Submit</a>
    <a href="http://www.865171.cn">Resources</a>
    <a href="http://www.865171.cn">Contact</a>
    </div>
    <div style="clear: left;"></div>
    www.865171.cn
  • 相关阅读:
    Python time
    Python List/Tutle/Set/Str/Dict
    python os
    Python 学习之九九乘法表
    Pycharm配置
    python 打包exe:
    Linux 安装PHP扩展过程
    tkinter在循环中创建按钮以传递命令参数,闭包的坑
    tkinter
    设置greenplum用户和密码访问:
  • 原文地址:https://www.cnblogs.com/luluping/p/1542093.html
Copyright © 2011-2022 走看看