其他分享
首页 > 其他分享> > 无序列表

无序列表

作者:互联网

列表
1.有序列表ordered list
<ol>
<li></li>
<li></li>
<li></li>
<li></li>
</ol>
2.无序列表unordered list
<ul>
<li></li>
<li></li>
<li></li>
<li></li>
</ul>
无序列表默认样式
list-style: none;
空心圆
list-style: circle;
正方形
list-style: square;
标号改图片
list-style-image: url();/list-style: url();
列表标记的位置、
默认outside靠外
list-style-position: outside;靠里inside

标签:style,url,list,无序,列表,outside
来源: https://www.cnblogs.com/mjl2004108/p/16561054.html