请问css的list-style-type问题?

来源:百度知道 编辑:UC知道 时间:2024/07/05 11:25:00
请问css的list-style-type问题?

这个style在css中,中文什么意思?
type在css中,中文什么意思?

list-style-type 顾名思义
list列表
style样式
type类型
整句话解释就是"列表样式类型"啊
你可以看看效果
<style>
a1 ul li {list-style-type:decimal;}
</style>
<div class="a1">
<ul>
<li>1</li>
<li>2</li>
<li>3</li>
</ul>
</div>