HTML - List

About

A group of non-interactive list items.

A list can contain:

Definition

HTML element

ARIA Role

list

Remove bullet and indent

ul, ol {
    padding: 0;
    list-style-type: none;
}

Javascript Library





Discover More
CSS - (Implementation|Processing Model|Rendering)

How user agents may implements CSS. A user agent processes a source by going through the following steps: Parse the source document and create a document tree (CSSOM) Identify the target media...
CSS - Image

The image type in CSS is given: a url that specifies: binary / raster image formats (such as gif, jpeg, etc) dedicated markup formats (such as SVG) or a gradient function (such as linear-gradient...
HTML - (Tree|Nested) List

A List inside a list See also the related ARIA TR/wai-aria/rolestree role
HTML - Description List (dl)

dl is an list HTML element that represents a description list The lists has several element that are represented by: the dt element - the description term the dd element - the name A Output:...
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 - 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 - UL element (unordered list)

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. menu



Share this page:
Follow us:
Task Runner