DIV CSS 佈局教程網

 DIV+CSS佈局教程網 >> 網頁腳本 >> CSS入門知識 >> CSS詳解 >> CSS 列表的標識
CSS 列表的標識
編輯:CSS詳解     

這一節唯一我們將要討論的是如何用 CSS 來改變列表
前的標識。我們知道有兩種列表:有序和無序。有序
列表用阿拉伯數字為標識, 無序列表用黑色小圓圈來
做標識。用 CSS 的 list-style-type 這兩種列表的標
識都可以有四種選擇:
無序: disc, circle, square, decimal
有序: upper-roman, lower-roman, upper-alpha, lower-alpha.
假如你想叫有序列表的標識為大小羅馬字母

  1. LI.upperroman {list-style-type: upper-roman}
  2. <STYLE>
  3. LI.upperroman {list-style-type: upper-roman}
  4. LI.lowerroman {list-style-type: lower-roman}
  5. LI.upperalpha {list-style-type: upper-alpha}
  6. LI.loweralpha {list-style-type: lower-alpha}
  7. LI.disc {list-style-type: disc}
  8. LI.circle {list-style-type: circle}
  9. LI.decimal {list-style-type: decimal}
  10. LI.square {list-style-type: square}
  11. </STYLE>

XML學習教程| jQuery入門知識| AJAX入門| Dreamweaver教程| Fireworks入門知識| SEO技巧| SEO優化集錦|
Copyright © DIV+CSS佈局教程網 All Rights Reserved