CSS_列表属性
程序员文章站
2024-01-15 19:26:28
...
列表属性
list-style-type:设置或检索对象的列表项所使用的预设标记。
list-style-position:设置或检索作为对象的列表项标记如何根据文本排列。
list-style-image:设置或检索作为对象的列表项标记的图像。
<style>
li{
list-style: lower-roman;/*小写罗马数字*/
list-style: lower-alpha;/*小写英文字母*/
list-style: cjk-ideographic;/*浅白的表意数字*/
list-style: lower-greek;/*基本的希腊小写字母*/
list-style: none;/*不使用项目符号*/
/* float: left; */
/* margin-right: 10px; */
}
</style>
<ul>
<li>小米手机</li>
<li>Redmi红米</li>
<li>电视</li>
<li>笔记本</li>
</ul>
上一篇: 复合属性、列表属性、文本属性