首先,大家可以使用list-style-type
属性来定义列表的符号类型。以下是常用的符号类型:
ul { list-style-type: disc; /*圆点符号,也是默认符号类型*/ } ol { list-style-type: decimal; /*数字*/ } ol.upper-alpha { list-style-type: upper-alpha; /*大写字母*/ } ol.lower-roman { list-style-type: lower-roman; /*小写罗马数字*/ }
除了上面列出的符号类型,还有square
、circle
、upper-roman
等符号类型。如果你想要自定义列表符号,可以使用list-style-image
属性来引用一个图片作为符号,例如:
ul { list-style-image: url("bullet.png"); /*自定义无序列表符号*/ } ol { list-style-image: url("number.png"); /*自定义有序列表符号*/ }
此外,大家还可以使用list-style-position
属性来调整符号的位置。默认情况下,符号放在文本的左侧,但如果大家想把符号放在文本内部,可以将此属性设置为inside
:
ul { list-style-position: outside; /*符号在文本左侧,也是默认位置*/ } ol { list-style-position: inside; /*符号在文本内部*/ }
在样式表中定义列表样式非常简单,只需要为<ul>
和<ol>
设置相应的属性即可。对于无序列表,大家通常使用圆点符号,对于有序列表,大家通常使用数字或字母。如果需要自定义符号,可以使用list-style-image
属性来引用一个图片。