<dl> 標籤
定義和用法
<dl> 標籤定義一個定義清單。
HTML 4.01 與 HTML 5 之間的差異
無。
<dl>
<dt>Coffee</dt>
<dd>Black hot drink</dd>
<dt>Milk</dt>
<dd>White cold drink</dd>
</dl>
屬性
標準屬性
class, contenteditable, coNtextmenu, dir, draggable, id, irrelevant, lang, ref, registrationmark, tabindex, template, titl e如需完整的描述,請訪 HTML 5 中標準屬性。
事件屬性
onabort, onbeforeunload, onblur, onchange, onclick, oncoNtextmenu, ondblclick, ondrag, ondragend, ondragenter, ondragHTTP://www.aliyun.com/zixun/aggregation/29841.html">leave, ondragover, ondragstart, ondrop, onerror, onfocus, onkeydown, onkeypress, onkeyup, onload, onmessage, onmousedown, onmousemove, onmouseover, onmouseout, onmouseup , onmousewheel, onresize, onscroll, onselect, onsubmit, onunload
如需完整的描述,請訪 HTML 5 中事件屬性。
TIY 實例,定義清單
如何創建定義清單。
<html>
<body>
<h2>一個定義清單:</h2>
<dl>
<dt>電腦</dt>
<dd>用來計算的儀器 ... 風信網(www.ithov.com) ...</dd>
<dt>顯示器</dt>
<dd>以視覺方式顯示資訊的裝置 ... 風信網...</dd>
</dl>
</body>
</html>