清單标記
[摘 要]
全寫: HyperText Mark-up Language
譯名: 超文件注标式語言(譯名之一(yī))
簡釋:一(yī)種爲普通文件中(zhōng)某些字句加上标示的語言,其目的在于運用标記(tag)使文件達到預期的顯示效果。
1、欲明白(bái)本篇【HTML剖析】之标記分(fēn)類請看 【标記一(yī)覽】。
2、亦請先明白(bái)圍堵标記與空标記的分(fēn)别請看 【HTML概念】。
<OL> <LI>
<UL>
<MENU> <DIR>
<DL> <DT> <DD>
■ <OL> <LI> :
<OL>稱爲順序清單标記。<LI>則用以标示清單項目。
所謂順序清單就是在每一(yī)項前面加上 1,2,3... 等數目,又(yòu)稱編号清單。
<OL> 的參數設定(常用):
例如: <ol type="i" start="4"></ol>
type="i"
設定數目款式,其值有五種,請參考 右表,内定爲 type="1"。
start="4"
設定開(kāi)始數目,不論設定了哪一(yī)數 目款式,其值隻能是 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"
隻适用于非順序清單,設定符号款式,其值有三種,如下(xià),内定爲 type="disc":
符号 . 是當 type="disc" 時的列項符号。
符号 。 if" width=10 height=10 border=0> 是當 type="circle" 時的列項符号。
符号 ‚ 是當 type="square" 時的列項符号。
value="4"
隻适用于順序清單,設定該一(yī)項的數目,其後各項将以此作爲起始數目而遞增, 但前面各項則不受影響,其值隻能是 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
Gloria Lam
■ <UL> :
<UL>稱爲無序清單标記。
所謂無序清單就是在每一(yī)項前面加上 .、。、‚ 等符号,故又(yòu)稱符号清單。
<UL> 的參數設定(常用):
例如: <UL type="square">
type="square"
設定符号款式,其值有三種,如下(xià),内定爲 type="disc":
符号 . 是當 type="disc" 時的列項符号。
符号 。 是當 type="circle" 時的列項符号。
符号 ‚ 是當 type="square" 時的列項符号。
注意:由于 <UL> 及 <LI> 都有 type 這個參數,兩者盡可能選用其一(yī)。
例子: HTML Source Code (原始碼) 浏覽器顯示結果
My Homepages:
<ul>
<li>Penpals Garden
<li>ICQ Garden
<li>Software City
<li>Creation of Webpage
</ul> My Homepages:
Penpals Garden
ICQ Garden
Software City
Creation of Webpage
■ <MENU> <DIR> :
這兩個标記都不爲 W3C 所贊同,希望用者能以 <ul> 及 <ol> 代之。
<MENU> 及 <DIR>,基本上它和 <ul> 是一(yī)樣的,在一(yī)些特别的浏覽器可能表現出 <ol> 的 效果,于舊(jiù)版的 IE 或 NC 标記 <DIR> 不顯示符号或數目。兩标記的用法與 <ul> 完全一(yī) 樣。
例子: HTML Source Code (原始碼) 浏覽器顯示結果
My Homepages:
<dir>
<li>Penpals Garden
<li>ICQ Garden
<li>Software City
<li>Creation of Webpage
</dir> My Homepages:
Penpals Garden
ICQ Garden
Software City
Creation of Webpage
■ <DL> <DT> <DD> :
<DL>稱爲定義清單标記。 <DT> 用以标示定義條目,<DD> 則用以标示定義内容。
所謂定義清單就是一(yī)種分(fēn)二層的項目清單,其不故符号及數目。
三個标記都沒有常用的參數。而 <DT> <DD> 可以獨立使用,隻是一(yī)些舊(jiù)的浏覽器并不支 援,如 IE 3.0。常用的如 <DD> 标記可用以制造段落第一(yī)個字前面的空白(bái)。
例子: 原始碼 <dl>
<dt>How to use Definition List
<dd>First, you should not place paragraph tag right after or before a list structure or between the items of a list. In cerntain contexts, use of extra paragraph tags should always be avoided, when you realize this concept, it is quit easy to write a HTML.
<dt>Other things to know
<dd>We usually put only ONE Definition tag following the Definition Term tag, more than one DD tag is not recommanded. Besides, unlike Definition List is a nonempty tag, both Definition Term and Definition Description are empty tags.
</dl>
顯示結果 How to use Definition List
First, you should not place paragraph tag right after or before a list structure or between the items of a list. In cerntain contexts, use of extra paragraph tags should always be avoided, when you realize this concept, it is quit easy to write a HTML.
Other things to know
We usually put only ONE Definition tag following the Definition Term tag, more than one DD tag is not recommanded. Besides, unlike Definition List is a nonempty tag, both Definition Term and Definition Description are empty tags.
[摘 要]
全寫: HyperText Mark-up Language
譯名: 超文件注标式語言(譯名之一(yī))
簡釋:一(yī)種爲普通文件中(zhōng)某些字句加上标示的語言,其目的在于運用标記(tag)使文件達到預期的顯示效果。
1、欲明白(bái)本篇【HTML剖析】之标記分(fēn)類請看 【标記一(yī)覽】。
2、亦請先明白(bái)圍堵标記與空标記的分(fēn)别請看 【HTML概念】。
<OL> <LI>
<UL>
<MENU> <DIR>
<DL> <DT> <DD>
■ <OL> <LI> :
<OL>稱爲順序清單标記。<LI>則用以标示清單項目。
所謂順序清單就是在每一(yī)項前面加上 1,2,3... 等數目,又(yòu)稱編号清單。
<OL> 的參數設定(常用):
例如: <ol type="i" start="4"></ol>
type="i"
設定數目款式,其值有五種,請參考 右表,内定爲 type="1"。
start="4"
設定開(kāi)始數目,不論設定了哪一(yī)數 目款式,其值隻能是 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"
隻适用于非順序清單,設定符号款式,其值有三種,如下(xià),内定爲 type="disc":
符号 . 是當 type="disc" 時的列項符号。
符号 。 if" width=10 height=10 border=0> 是當 type="circle" 時的列項符号。
符号 ‚ 是當 type="square" 時的列項符号。
value="4"
隻适用于順序清單,設定該一(yī)項的數目,其後各項将以此作爲起始數目而遞增, 但前面各項則不受影響,其值隻能是 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
Gloria Lam
■ <UL> :
<UL>稱爲無序清單标記。
所謂無序清單就是在每一(yī)項前面加上 .、。、‚ 等符号,故又(yòu)稱符号清單。
<UL> 的參數設定(常用):
例如: <UL type="square">
type="square"
設定符号款式,其值有三種,如下(xià),内定爲 type="disc":
符号 . 是當 type="disc" 時的列項符号。
符号 。 是當 type="circle" 時的列項符号。
符号 ‚ 是當 type="square" 時的列項符号。
注意:由于 <UL> 及 <LI> 都有 type 這個參數,兩者盡可能選用其一(yī)。
例子: HTML Source Code (原始碼) 浏覽器顯示結果
My Homepages:
<ul>
<li>Penpals Garden
<li>ICQ Garden
<li>Software City
<li>Creation of Webpage
</ul> My Homepages:
Penpals Garden
ICQ Garden
Software City
Creation of Webpage
■ <MENU> <DIR> :
這兩個标記都不爲 W3C 所贊同,希望用者能以 <ul> 及 <ol> 代之。
<MENU> 及 <DIR>,基本上它和 <ul> 是一(yī)樣的,在一(yī)些特别的浏覽器可能表現出 <ol> 的 效果,于舊(jiù)版的 IE 或 NC 标記 <DIR> 不顯示符号或數目。兩标記的用法與 <ul> 完全一(yī) 樣。
例子: HTML Source Code (原始碼) 浏覽器顯示結果
My Homepages:
<dir>
<li>Penpals Garden
<li>ICQ Garden
<li>Software City
<li>Creation of Webpage
</dir> My Homepages:
Penpals Garden
ICQ Garden
Software City
Creation of Webpage
■ <DL> <DT> <DD> :
<DL>稱爲定義清單标記。 <DT> 用以标示定義條目,<DD> 則用以标示定義内容。
所謂定義清單就是一(yī)種分(fēn)二層的項目清單,其不故符号及數目。
三個标記都沒有常用的參數。而 <DT> <DD> 可以獨立使用,隻是一(yī)些舊(jiù)的浏覽器并不支 援,如 IE 3.0。常用的如 <DD> 标記可用以制造段落第一(yī)個字前面的空白(bái)。
例子: 原始碼 <dl>
<dt>How to use Definition List
<dd>First, you should not place paragraph tag right after or before a list structure or between the items of a list. In cerntain contexts, use of extra paragraph tags should always be avoided, when you realize this concept, it is quit easy to write a HTML.
<dt>Other things to know
<dd>We usually put only ONE Definition tag following the Definition Term tag, more than one DD tag is not recommanded. Besides, unlike Definition List is a nonempty tag, both Definition Term and Definition Description are empty tags.
</dl>
顯示結果 How to use Definition List
First, you should not place paragraph tag right after or before a list structure or between the items of a list. In cerntain contexts, use of extra paragraph tags should always be avoided, when you realize this concept, it is quit easy to write a HTML.
Other things to know
We usually put only ONE Definition tag following the Definition Term tag, more than one DD tag is not recommanded. Besides, unlike Definition List is a nonempty tag, both Definition Term and Definition Description are empty tags.