關於Dreamweaver中內建的CSS布局範例

來源:互聯網
上載者:User

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

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

 

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.