HTML 5 <ul> 標(biāo)簽
定義和用法
<ul> 標(biāo)簽無序列表。
HTML 4.01 與 HTML 5 之間的差異
在 HTML 4.01 中,ul 元素的 "compact" 和 "type" 屬性是不被贊成使用的。在 HTML 5 中,不再支持這兩個(gè)屬性。
提示和注釋
提示:請(qǐng)使用 CSS 來定義列表的類型。
例子
<ul>
<li>Coffee</li> <li>Tea</li></ul>
屬性
標(biāo)準(zhǔn)屬性
class, contenteditable, contextmenu, dir, draggable, id, irrelevant, lang, ref, registrationmark, tabindex, template, title
如需完整的描述,請(qǐng)?jiān)L問 HTML 5 中標(biāo)準(zhǔn)屬性。
事件屬性
onabort, onbeforeunload, onblur, onchange, onclick, oncontextmenu, ondblclick, ondrag, ondragend, ondragenter, ondragleave, ondragover, ondragstart, ondrop, onerror, onfocus, onkeydown, onkeypress, onkeyup, onload, onmessage, onmousedown, onmousemove, onmouseover, onmouseout, onmouseup, onmousewheel, onresize, onscroll, onselect, onsubmit, onunload
如需完整的描述,請(qǐng)?jiān)L問 HTML 5 中事件屬性。
TIY 實(shí)例
- 無序列表
- 本例演示一個(gè)無序列表。
- 嵌套列表
- 本例演示如何嵌套列表。
- 嵌套列表 2
- 本例演示更復(fù)雜的嵌套列表。