type表单
列表
<ul type="square">
<li>ul:无序列表 type="disc(空心圆点)/circle(默认)/square(实心方块)/none(没有边框的表格)"</li>
<li>li:列表文字</li>
</ul>
<ol type="a">
<li>ol:有序列表 type="1/a/A/i/I"</li>
<li>li:列表文字</li>
</ol>
<dl>
<dt>定义列表</dt>
<dd>描述</dd>
</dl>
css
list-style-type
disc 实心圆
circle 空心圆
square 实心方块
none 取出符号
style=“border-collapse:collapse(粗线) border-spacing:3px 4px;距离”
表格
<table width="100%" border="1" cellpadding="格内距"
(外边距)cellspacing="格间距">
<caption align="top/bottom">表格标题</caption>
<tr height="20%" align="left/center/right" bgcolor="red">
<th>表头</th>
<td width="10%" align="left" valign="top"></td>
</tr>
<tr>
<td colspan="3">横占3格</td>colspan
<td rowspan="2">竖占2格</td>rowspan
</tr>
</table>
<table>
<td>纵向
<tr>横向
<th>加粗