Difference between revisions of "Li (HTML element)"

From Wiki @ Karl Jones dot com
Jump to: navigation, search
(External links)
(Description)
Line 7: Line 7:
 
It must be contained in a parent element:  
 
It must be contained in a parent element:  
  
* An ordered list, using the [[Ol HTML element)|ol element]]
+
* An ordered list, using the [[Ol (HTML element)|ol element]]
* An unordered list, using the [[Ul HTML element)|ul element]]
+
* An unordered list, using the [[Ul (HTML element)|ul element]]
* A menu, using the [[Menu HTML element)|menu element]]  
+
* A menu, using the [[Menu (HTML element)|menu element]]  
  
 
In menus and unordered lists, list items are usually displayed using bullet points.
 
In menus and unordered lists, list items are usually displayed using bullet points.

Revision as of 18:53, 1 May 2016

In HTML, the li element represents an item in a list.

Description

It is commonly known as a list item element.

It must be contained in a parent element:

In menus and unordered lists, list items are usually displayed using bullet points.

In ordered lists, they are usually displayed with an ascending counter on the left, such as a number or letter.

Examples

<ul>
 <li>first item</li>
 <li>second item</li>
 <li>third item</li>
</ul>

See also

External links

  • li @ w3.org
  • li @ developer.mozilla.org
  • li @ w3schools.com