Java web前端
一. HTML
1. HTML_列表
i. 列表
有序列表
<ul>
<li></li>
<li></li>
</ul>
常用属性:
type 列表的图标 square circle disc(默认)
无序列表
<ol>
<li></li>
<li></li>
</ol>
常用属性:
type 列表的图标 1. 数字序号(默认) a. 小写字母 A. 大写字母 i. 小写罗马字母 I. 大写的罗马字母
iiii.实例:
<ul>
<li></li>
<li></li>
</ul>
常用属性:
type 列表的图标 square circle disc(默认)
<ol>
<li></li>
<li></li>
</ol>
常用属性:
type 列表的图标 1. 数字序号(默认) a. 小写字母 A. 大写字母 i. 小写罗马字母 I. 大写的罗马字母