<ul>
<ul>
is a Sectional
component that renders an unordered (bulleted) list. The <ul>
component can only take <li>
components (list items) as children.
Attributes and Properties
Attribute | Type | Values |
---|---|---|
cols = "…" | ||
label = "…" | text | |
level = "…" | ||
marker = "…" |
Property | Type |
---|---|
$u.disabled | boolean |
$u.fixed | boolean |
$u.fixLocation | boolean |
$u.hidden | boolean |
$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.