回到目录

HTML元素 - ul

定义

表示不排序的项目列表。

Draws lines of text as a bulleted list.

注释

TYPE 标签属性设置了所有后续的列表类型,除非设置了不同的 type 值。

UL 元素从 BODY 的 font 属性的高度中继承 line-height。例如,如果 BODY 的 font-size 属性大于 UL 元素的 font-size 属性,那么 UL 中的列表项目就会根据 BODY 的 font-size 间距排列。

此元素在 Internet Explorer 3.0 及以上版本的 HTML 中可用,在 Internet Explorer 4.0 及以上版本的脚本中可用。

此元素是块元素。

此元素需要关闭标签。

The TYPE attribute sets the list type for all ensuing lists unless a different type value is set.

The UL element inherits its line-height from the height of the font attribute for the BODY. For example, if the font-size attribute for the BODY is larger than the font-size attribute for the UL element, the list items in the UL are spaced according to the font-size of the BODY.

This element is available in HTML as of Internet Explorer 3.0, and in script as of Internet Explorer 4.0.

This element is a block element.

This element requires a closing tag.

示例代码

<ul>
  <li>文学</li>
  <li>绘画</li>
  <li>音乐</li>
</ul>

另见

li