關於css中Ul和Li的list-style-type屬性詳解

來源:互聯網
上載者:User
參考資料:

list-style-type的用法

文法:
list-style-type : disc | circle | square | decimal | lower-roman | upper-roman | lower-alpha | upper-alpha | none | armenian | cjk-ideographic | georgian | lower-greek | hebrew | hiragana | hiragana-iroha | katakana | katakana-iroha | lower-latin | upper-latin

取值:
disc : CSS1 預設值。實心圓
circle : CSS1 空心圓
square : CSS1 實心方塊
decimal : CSS1 阿拉伯數字
lower-roman : CSS1 小寫羅馬數字
upper-roman : CSS1 大寫羅馬數字
lower-alpha : CSS1 小寫英文字母
upper-alpha : CSS1 大寫英文字母
none : CSS1 不使用項目符號
armenianl : CSS2 未支援。傳統的亞美尼亞數字
cjk-ideographic : CSS2 未支援。淺白的表意數字
georgian : CSS2 未支援。傳統的喬治數字
lower-greek : CSS2 未支援。基本的希臘小寫字母
hebrew : CSS2 未支援。傳統的希伯萊數字
hiragana : CSS2 未支援。日文平假名字元
hiragana-iroha : CSS2 未支援。日文平假名序號
katakana : CSS2 未支援。日文片假名字元
katakana-iroha : CSS2 未支援。日文片假名序號
lower-latin : CSS2 未支援。小寫拉丁字母
upper-latin : CSS2 未支援。大寫拉丁字母

-------------------

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.