表格及有序無序列表
阿新 • • 發佈:2018-03-10
背景 align borde 列表 序列 nbsp order 背景顏色 ble
1.表格標簽:table
行標簽:tr
單元格:td
屬性:<table border=“”表格邊框“” width="寬度" cellpadding=“單元格與單元格的距離” cellspacing="單元格與單元格裏內容的距離"></table>
<tr align="right或left或center" bgcolor="行的背景顏色"></tr>
<td align="right或left或center" colspan="單元格往右合並的列數" rowspan=“單元格向下合並的行數”></td>
2.有序列表標簽:ol 無序列表標簽:ul
例如:<ol>
<li>汽車</li>
<li>火車</li>
</ol>
1.汽車
2.火車
<ul>
<li>汽車</li>
<li>火車</li>
</ul>
●汽車
●火車
表格及有序無序列表