Glubase - share your knowledge


All / Computers / Programming / HTML / XHTML





  • View Command

HTML / XHTML Reference

HTML / XHTML ul definition

Browser supportInfo
IEFFOpSafVersionDepr.
FullFullFullFullHTML 2.0False

Syntax

<ul> ... </ul>

Type
block-level element
Contains
li
Contained by
applet, blockquote, body, button, center, dd, del, div, fieldset, form, iframe, ins, li, map, noframes, noscript, object, td or th

Description

An unordered list defines a list without any numbers. For example:

  • First entry in list.
  • Second entry in list.

Attributes

Attribute Description
type = style-information Deprecated. Sets the style of the list.
compact Deprecated. Renders the list in a more compact way.

Common attributes.

Example

[Try this example yourself]
<ul>
  <li>Item 2</li>
  <li>Item 1</li>
</ul>

Output

  • Item 2
  • Item 1
  • Comments

No comments added.