|
源代码网推荐源代码网整理以下 清单标记
源代码网整理以下 <OL> <LI>
<UL>
<MENU> <DIR>
<DL> <DT> <DD>
源代码网整理以下 ■ <OL> <LI> :
<OL>称为顺序清单标记。<LI>则用以标示清单项目。
所谓顺序清单就是在每一项前面加上 1,2,3... 等数目,又称编号清单。
<OL> 的参数设定(常用):
例如: <ol type="i" start="4"></ol>
<OL> 的参数设定(常用):
例如: <ol type="i" start="4"></ol>
源代码网整理以下 ♦ type="i"
| Type |
Numbering style |
| 1 |
arabic numbers |
1, 2, 3, ... |
| a |
lower alpha |
a, b, c, ... |
| A |
upper alpha |
A, B, C, ... |
| i |
lower roman |
i, ii, iii, ... |
| I |
upper roman |
I, |
设定数目款式,其值有五种,请参考 右表,内定为 type="1"。
源代码网整理以下 ♦ start="4"
设定开始数目,不论设定了哪一数 目款式,其值只能是 1,2,3.. 等整 数,内定为 start="1"。
源代码网整理以下 <LI> 的参数设定(常用):
例如: <li type="square" value="4">
源代码网整理以下 ♦ type="square"
只适用于非顺序清单,设定符号款式,其值有三种,如下,内定为 type="disc":
符号 是当 type="disc" 时的列项符号。
符号 if" width=10 height=10 border=0> 是当 type="circle" 时的列项符号。
符号 是当 type="square" 时的列项符号。
源代码网整理以下 ♦ value="4"
只适用于顺序清单,设定该一项的数目,其後各项将以此作为起始数目而递增, 但前面各项则不受影响,其值只能是 1,2,3.. 等整数,没有内定值。
源代码网整理以下 例子:
源代码网整理以下
| HTML Source Code (原始码) |
浏览器显示结果 |
My best friends:
<ol>
<li>Michelle Wei
<li>Michael Wan
<li>Gloria Lam
</ol> |
My best friends:
- Michelle Wei
- Michael Wan
|
源代码网供稿. |