HTML - UL element (unordered list)

About

ul is an element that represents an ordered list.

The difference with an ordered list is just the numeration of the list item. Unordered list items are not numbered.

If this is a list of action, you should used the menu element instead.

Example

Default

<ul> <!-- ul = unordered list -->
    <li>First Element</li> <!-- li = list item -->
    <li>Second Element</li>
    <li>Third Element</li>
</ul>

Without style

ul {
  list-style-type: none;
}
<ul> <!-- ul = unordered list -->
    <li>First Element</li> <!-- li = list item -->
    <li>Second Element</li>
    <li>Third Element</li>
</ul>





Discover More
CSS - Block Level (element|box)

Block-level refers to the (HTML) elements that are formatted visually as blocks. See for more information: Except for table boxes, and replaced elements, a block-level box can also be a block container...
Boxdim
CSS - Boxes (Box Model)

CSS The Box model means that each element is represented as a rectangular box. The layout phase of the browser rendering engine creates the box model as a tree of box and determines: the , the...
DOM - Event Delegation

Event delegation in the DOM
HTML - (Flow|Body) Content

Most elements that are used in the body of documents and applications are categorized as flow content. Flow content consists of flow elements intermixed with normal character data. (ifbodhead...
HTML - Li element (list item)

HTML li is an element that represents a single item in a. ordered: ol list or unordered: ul list This example shows a ordered list If you want to select a li list item, you need to use a...
HTML - List

A group of non-interactive list items. A list can contain: listitem, or another list HTML Unordered list: HTML ul: (Tree|Nested) Unordered list Ordered list: HTML ol element Description...
HTML - Menu / Toolbar (list of commands)

menu is an element that can be used as an alternative to ul (list) to express an unordered list of commands creating a Menu (toolbar). ...
HTML - OL element (ordered list)

ol is a element that represents an ordered list. Ordered and unordered lists are rendered in an identical manner except that visual user agents number ordered list items. In ordered lists, it is not...
HTML - Palpable content

As a general rule, elements whose content model allows any flow content or phrasing content should have at least one node in its contents: that is palpable content (Can be manipulated ?) and that...
HTML Slot - A step by step on how to create a Template Placeholder

Slots allows to define placeholders in an HTML template TemplateShadow DOMcustom elementweb components Status Description Slotable The element that should be inserted in a slot Sloted The element...



Share this page:
Follow us:
Task Runner