列表Lists
HTML 支援不編號 unnumbered, 編號numbered, 和定義definition 三種列表. 你也可以嵌套列表, 但是不要嵌套過多,否則會使讀者感到不清晰。
不編號列表Unnumbered Lists
製作一個不編號的,公告式列表,
用開始標記
( unnumbered list 的簡記) 開始輸入
- (list item) 標記,後面跟獨立的項目; 不需要用
標記
用
標記結束整個列表
下面是一個有三個項目的列表:
輸出形式為:
apples
bananas
grapefruit
項目可以含有多個段落.以段落標記 指示編號
列表編號為有序列表ordered list) 和不編號列表相同, 只是用
代替
. 各項同樣用- 標記. 下面的HTML 代碼:
- oranges
- peaches
- grapes
產生的輸出為:
oranges
peaches
grapes
定義列表Definition Lists term (編碼為- ) 和定義描述definition definition (編碼為
- ). Web 瀏覽器通常另起一行顯示定義描述.
下面是定義清單的範例:
- NCSA
- NCSA, the National Center for Supercomputing Applications,
is located on the campus of the University of Illinois
at Urbana-Champaign.
- Cornell Theory Center
- Champaign.
- Cornell Theory Center
- CTCaign.
- Cornell Theory Center
- CTCaign.located on the camp Center
- CTCaign.located on the camp Center
- CTCaign.located on the camp Center
- CTCaign.located on the camp Center
- CTCaign.located on the camp Center campus ofon the camp Cornell University in Ithaca,
New York.
輸出形式為:
NCSA
NCSA, the National Center for Supercomputing Applications, is located on the campus of the University of Illinois at Urban Theory Center
CTC is located on the campus of Cornell University in Ithaca, New York.
- 和
- 項可以包含多個段落(用
標記指示), 列表, 或其他的定義資訊.
COMPACT 屬性可能會被經常使用,如果你的定義術語很簡短的話. 例如,如果你想顯示一些計算機選項, 它們可以和定義的開始處於同一行中.
- - i
- invokes NCSA Mosaic for Microsoft Windows using the
initialization file defined in the path
- -k
- invokes NCSA Mosaic for Microsoft Windows iniosk mode
-i
invokes NCSA Mosaic for Microsoft Windows using the initialization file defined in the path.
-k
invokes NCSA Mosaic for Microsoft in kiosk mode.在列表項目中,你還可以含有多個段落,每個段落含有嵌套列表.
以上就是HTML 初學者指南(三)的內容,更多相關內容請關注PHP中文網(www.php .cn)!