Breaking

Sunday, May 12, 2019

HTML ol Tag

  <li>Tea</li>
  <li>Milk</li>
</ol>

<ol start="50">
  <li>Coffee</li>
  <li>Tea</li>
  <li>Milk</li>
</ol>
Try it Yourself »

Definition and Usage

The <ol> tag defines an ordered list. An ordered list can be numerical or alphabetical.
Use the <li> tag to define list items.

Browser Support

Element
<ol>YesYesYesYesYes

Tips and Notes

Tip: For unordered list, use the <ul> tag.
Tip: Use CSS to style lists.


Differences Between HTML 4.01 and HTML5

The "start" and "type" attributes were deprecatedin HTML 4.01, but are supported in HTML5.
The "reversed" attribute is new in HTML5.
The "compact" attribute is not supported in HTML5.

Attributes

= New in HTML5.
AttributeValueDescription
compactcompactNot supported in HTML5.
Specifies that the list should render smaller than normal
reversedreversedSpecifies that the list order should be descending (9,8,7...)
startnumberSpecifies the start value of an ordered list
type1
A
a
I
i
Specifies the kind of marker to use in the list

Global Attributes

The <ol> tag also supports the Global Attributes in HTML.

Event Attributes

The <ol> tag also supports the Event Attributes in HTML.

Related Pages

HTML tutorial: HTML Lists
HTML DOM reference: Ol Object
CSS Tutorial: Styling Lists

Default CSS Settings

Most browsers will display the <ol> element with the following default values:

Example

ol {
  display: block;
  list-style-type: decimal;
  margin-top: 1em;
  margin-bottom: 1em;
  margin-left: 0;
  margin-right: 0;
  padding-left: 40px;
}
Try it Yourself »

No comments:

Post a Comment