在 CSS 中,可以使用 list-style-type
属性来设置列表标记的样式。常用的标记样式包括:
list-style-type: disc;
list-style-type: circle;
list-style-type: square;
list-style-type: lower-alpha;
list-style-type: upper-alpha;
list-style-type: lower-roman;
list-style-type: upper-roman;
除了 list-style-type
属性,还可以使用 list-style-image
属性来为列表标记设置自定义图片,使用 list-style-position
属性来控制列表标记的位置。
需要注意的是,以上属性都是应用在 ul
或 ol
元素上的。如果要针对特定的列表项设置样式,可以使用 ::marker
伪元素。比如:
li::marker {
color: red;
font-weight: bold;
}
这样就可以将列表项的标记设置为红色粗体。