<ul>
<ul>
renders an unordered (bulleted) list. <ul>
can only take <li>
components (list items) as children.
Attributes and Properties
Attribute | Type | Values |
---|---|---|
cols = "…" | ||
label = "…" | text | |
level = "…" | ||
marker = "…" |
Property | Type |
---|---|
$u.label | text |
Example: <ul>
with nested <li>
<ul>
renders an unordered list, with list items given by <li>
children. <ul>
is a block component and should not contain any components other than <li>
children. Individual <li>
children may themselves contain graphs, problems, paragraphs, and other content.
Example: <ul>
with more content
<ul>
components can only take <li>
children. Individual <li>
children may themselves contain graphs, problems, paragraphs, and other content.