列表li头符合可不可以用其他的字符代替?

来源:百度知道 编辑:UC知道 时间:2024/05/16 15:04:55
列表li头符合可不可以用其他的字符代替?

<style type="text/css">
li {
list-style-type: disc;
}
</style>

这个里面的disc
我可不可以用其他字符代替而不仅仅局限于这些符号

list-style-type:none; /*不编号*/
list-style-type:decimal; /*阿拉伯数字*/
list-style-type:lower-roman; /*小写罗马数字*/
list-style-type:upper-roman; /*大写罗马数字*/
list-style-type:lower-alpha; /*小写英文字母*/
list-style-type:upper-alpha; /*大写英文字母*/
list-style-type:disc; /*实心圆形符号*/
list-style-type:circle; /*空心圆形符号*/
list-style-type:square; /*实心方形符号*/
list-style-image:url(/dot.gif); /*图片式符号*/
list-style-position:outside; /*凸排*/
list-style-position:inside; /*缩进*/

好像不行,取值应该是固定的几个