欢迎您访问程序员文章站本站旨在为大家提供分享程序员计算机编程知识!
您现在的位置是: 首页  >  web前端

html语言剖析 清单标记

程序员文章站 2022-05-11 20:16:36
...
<ol> <li>
<ul>
<menu> <dir>
<dl> <dt> <dd>
■ <ol> <li> :

<ol>称为顺序清单标记。<li>则用以标示清单项目。
所谓顺序清单就是在每一项前面加上 1,2,3... 等数目,又称编号清单。
<ol> 的参数设定(常用):
例如: <ol type="i" start="4"></ol>
type="i"
设定数目款式,其值有五种,请参考 右表,内定为 type="1"。
start="4"
设定开始数目,不论设定了哪一数 目款式,其值只能是 1,2,3.. 等整 数,内定为 start="1"。
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, ii, iii, ...
<li> 的参数设定(常用):
例如: <li type="square" value="4">
type="square"
只适用于非顺序清单,设定符号款式,其值有三种,如下,内定为 type="disc":
符号 是当 type="disc" 时的列项符号。
符号 if" width=10 height=10 border=0> 是当 type="circle" 时的列项符号。
符号 是当 type="square" 时的列项符号。

以上就是html语言剖析 清单标记的内容,更多相关文章请关注PHP中文网(www.php.cn)!