<ul>
An unordered list is a list in which the order of items is not significant.
Rendering expectation
List items are typically indicated by bullets or dashes.
Content model
(
<data>
|
<sort-as>
)*,
<li>
+
Contained by
<abstract>
,
<body>
,
<bodydiv>
,
<dd>
,
<desc>
,
<div>
,
<draft-comment>
,
<entry>
,
<example>
,
<fallback>
,
<fig>
,
<figgroup>
,
<fn>
,
<howtoavoid>
,
<li>
,
<linkinfo>
,
<lq>
,
<note>
,
<p>
,
<section>
,
<stentry>
Contained by
Inheritance
- topic/ul
The <ul>
element is a base element type. It is defined in the topic module.
Attributes
The following attributes are available on this element: universal
attributes and @compact
.
The following attributes are available on this element: universal attributes and the attributes defined below.
Example
This section is non-normative.
The following code sample shows a list in which the order of items is unimportant:
<p>Here are the countries that I have visited:</p>
<ul>
<li>Germany</li>
<li>France</li>
<li>Japan</li>
<li>Mexico</li>
</ul>