Tag HTML <ol>


Contoh

Dua daftar berurutan yang berbeda (daftar pertama dimulai dari 1, dan yang kedua dimulai dari 50):

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

<ol start="50">
  <li>Coffee</li>
  <li>Tea</li>
  <li>Milk</li>
</ol>

Lebih banyak contoh "Coba Sendiri" di bawah ini.


Definisi dan Penggunaan

Tag <ol>mendefinisikan daftar yang dipesan. Daftar yang diurutkan dapat berupa angka atau abjad.

Tag <li> digunakan untuk mendefinisikan setiap item daftar.

Tip: Gunakan CSS untuk menata daftar .

Tip: Untuk daftar yang tidak berurutan, gunakan tag <ul>


Dukungan Peramban

Element
<ol> Yes Yes Yes Yes Yes


Atribut

Attribute Value Description
reversed reversed Specifies that the list order should be reversed (9,8,7...)
start number Specifies the start value of an ordered list
type 1
A
a
I
i
Specifies the kind of marker to use in the list

Atribut Global

Tag <ol>juga mendukung Atribut Global dalam HTML .


Atribut Acara

Tag <ol>juga mendukung Atribut Peristiwa dalam HTML .


Lebih Banyak Contoh

Contoh

Tetapkan jenis daftar yang berbeda (dengan CSS):

<ol style="list-style-type:upper-roman">
<li>Coffee</li>
<li>Tea</li>
<li>Milk</li>
</ol>

<ol style="list-style-type:lower-alpha">
<li>Coffee</li>
<li>Tea</li>
<li>Milk</li>
</ol>

Contoh

Tampilkan semua jenis daftar berbeda yang tersedia dengan CSS:

<style>
ol.a {list-style-type: armenian;}
ol.b {list-style-type: cjk-ideographic;}
ol.c {list-style-type: decimal;}
ol.d {list-style-type: decimal-leading-zero;}
ol.e {list-style-type: georgian;}
ol.f {list-style-type: hebrew;}
ol.g {list-style-type: hiragana;}
ol.h {list-style-type: hiragana-iroha;}
ol.i {list-style-type: katakana;}
ol.j {list-style-type: katakana-iroha;}
ol.k {list-style-type: lower-alpha;}
ol.l {list-style-type: lower-greek;}
ol.m {list-style-type: lower-latin;}
ol.n {list-style-type: lower-roman;}
ol.o {list-style-type: upper-alpha;}
ol.p {list-style-type: upper-latin;}
ol.q {list-style-type: upper-roman;}
ol.r {list-style-type: none;}
ol.s {list-style-type: inherit;}
</style>

Contoh

Kurangi dan perluas tinggi baris dalam daftar (dengan CSS):

<ol style="line-height:80%">
  <li>Coffee</li>
  <li>Tea</li>
  <li>Milk</li>
</ol>

<ol style="line-height:180%">
  <li>Coffee</li>
  <li>Tea</li>
  <li>Milk</li>
</ol>

Contoh

Sarang daftar yang tidak berurutan di dalam daftar yang dipesan:

<ol>
  <li>Coffee</li>
  <li>Tea
    <ul>
      <li>Black tea</li>
      <li>Green tea</li>
    </ul>
  </li>
  <li>Milk</li>
</ol>

Halaman Terkait

Tutorial HTML: Daftar HTML

Referensi DOM HTML: Objek Ol

Tutorial CSS: Daftar Gaya


Pengaturan CSS Default

Sebagian besar browser akan menampilkan <ol>elemen dengan nilai default berikut:

Contoh

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