ul element

Type:Lists
Attributes: marker-font-family  •  marker-font-style  •  marker-font-weight  •  marker-hierarchy-separator  •  marker-hierarchy  •  marker-offset  •  marker-suffix  •  marker-type  •  align  •  alt  •  background-color  •  background-image-dpi  •  background-image-position  •  background-image  •  background-pdf  •  border-color  •  border-style  •  border-width  •  border  •  clear  •  corner-radius  •  display  •  float  •  font-size  •  height  •  href  •  left  •  line-cap  •  line-height  •  line-join  •  margin  •  onmouseover  •  overflow  •  padding  •  page-break-after  •  page-break-inside  •  position  •  rotate  •  size  •  title  •  top  •  vertical-align  •  visibility  •  white-space  •  width  •  class  •  colorspace  •  direction  •  id  •  lang  •  pdf-tag-background-color  •  pdf-tag-border-color  •  pdf-tag-border-style  •  pdf-tag-border-thickness  •  pdf-tag-color  •  pdf-tag-list-numbering  •  pdf-tag-placement  •  pdf-tag-table-colspan  •  pdf-tag-table-headers  •  pdf-tag-table-rowspan  •  pdf-tag-table-scope  •  pdf-tag-table-summary  •  pdf-tag-text-align  •  pdf-tag-type
See:li ol

The ul tag displays a bulleted, or unordered, list. You can use the tag's marker-type attribute to change the bullet style from the default of "disc". Use the li tag to designate the individual list items in the list.

The "type" attribute used in HTML is not supported. Instead, use the marker-type attribute to set the style of bullet.

<ul marker-type="disc">
<li>Element 1</li>
<li>Element 2</li>
<li>Element 3</li>
</ul>