UL-LI 標籤結合CSS的運用

來源:互聯網
上載者:User
UL-LI 標籤結合CSS的運用

在CSS布局中,ul,li的運用是非常常見的。配合DIV與CSS,建立無表格版面配置。

其實Dreamweaver中也有內建的CSS布局的範例,如:

 

  1. LI代碼的格式化:
    A).運用CSS格式化列表符: ul li{
    list-style-type:none;
    } 例如下面的:

    • 供求資訊

    B).如果你想將列表符換成映像,則: ul li{
    list-style-type:none;
    list-style-image: url(images/icon.gif);
    } 例如下面的:

    • 供求資訊

    C).為了靠左對齊,可以用如下代碼: ul{
    list-style-type:none;
    margin:0px;
    } 例如下面的:

    • 供求資訊

    D).如果想給列表加背景色,可以用如下代碼: ul{
    list-style-type: none;
    margin:0px;
    }
    ul li{
    background:#CCC;
    }例如下面的:

    • 供求資訊

    E).如果想給列表加MOUSEOVER背景變色效果,可以用如下代碼: ul{ list-style-type: none; margin:0px; }
    ul li a{ display:block; width: 100%; background:#ccc; }
    ul li a:hover{ background:#999; }說明:display:block;這一行必須要加的,這樣才能塊狀顯示!

    例如下面的:

    • 供求資訊

    F).LI中的元素水平排列,關鍵FLOAT:LEFT: ul{
    list-style-type:none;
    width:100%;
    }
    ul li{
    width:80px;
    float:left;
    }

    •  
    • 供求資訊
    • 供求資訊網

 

相關文章

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.