📅  最后修改于: 2023-12-03 15:01:12.829000             🧑  作者: Mango
在HTML和DOM中,listStyleType属性用于设置列表的符号类型。
<style>
ul {
list-style-type: disc|circle|square|decimal|lower-roman|upper-roman|lower-greek|lower-latin|upper-latin|armenian|georgian|lower-alpha|upper-alpha|none|initial|inherit;
}
</style>
<style>
ul {
list-style-type: square;
}
ol {
list-style-type: upper-roman;
}
</style>
<ul>
<li>第一项</li>
<li>第二项</li>
<li>第三项</li>
</ul>
<ol>
<li>第一步</li>
<li>第二步</li>
<li>第三步</li>
</ol>
以上是关于HTML | DOM 样式listStyleType属性的介绍。