HTML标签

144 阅读1分钟

一、表格标签

1.边框属性:border 单位为px   (注:只能在table中添加)

   边框重合:cellspacing (注:只能在table中添加)

   背景颜色:backgroundcolor (注:任意表格元素都可添加)

td 合并单元格  colspan 跨列

                        rowspan跨行

<table border="1" cellspacing="0"> //表格标签
    <caption>课程表</caption> //标题标签
    <tr backgroundcolor="green"> //表格中的行标签
        <td></td> //表格中的列
    </tr>
</table>

二、列表标签。

1.有序标签:

type:列表符号类型

start:默认从第几项开始

<ol type="a" start="10">
    <li></li>
</ol>

2.无序列表

type:none-取消列表符号

        square 实心方块

       circle 空心圆

<ul type="none">
    <li></li>
</ul>