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