zoukankan      html  css  js  c++  java
  • CSS样式-li

  • Item two
  • Item three
  • Item four
  • Item five
  • HTML
    <div id="navcontainer">
    <ul id="navlist">
    <li id="active"><href="#" id="current">Item one</a></li>
    <li><href="#">Item two</a></li>
    <li><href="#">Item three</a></li>
    <li><href="#">Item four</a></li>
    <li><href="#">Item five</a></li>
    </ul>
    </div>

    CSS
    #navcontainer {  200px; }

    #navcontainer ul
    {
    margin-left: 0;
    padding-left: 0;
    list-style-type: none;
    font-family: Arial, Helvetica, sans-serif;
    }

    #navcontainer a
    {
    display: block;
    padding: 3px;
     160px;
    background-color: #036;
    border-bottom: 1px solid #eee;
    }

    #navcontainer a:link, #navlist a:visited
    {
    color: #EEE;
    text-decoration: none;
    }

    #navcontainer a:hover
    {
    background-color: #369;
    color: #fff;
    }
查看全文
  • 相关阅读:
    ActiveReports打印的问题
    HTML高级应用
    一些常用的asp.net技巧焦点篇
    数据库操作
    [ASP.NET]在后台引用JavaScript
    点击TextBox复制其中内容
    VB.Net基本语句(推荐)
    ADO 对象
    控件不获得焦点
    32款网站优化工具
  • 原文地址:https://www.cnblogs.com/yamajia/p/534488.html
  • Copyright © 2011-2022 走看看