HTML <ol> 유형 속성

❮ HTML <ol> 태그

예시

대문자 로마 숫자가 있는 정렬된 목록:

<ol type="I">
  <li>Coffee</li>
  <li>Tea</li>
  <li>Milk</li>
</ol>

아래에서 더 많은 "직접 사용해 보기" 예를 살펴보세요.


정의 및 사용

type속성은 목록에서 사용할 마커의 종류(문자 또는 숫자)를 지정합니다 .

팁: CSS list-style-type 속성은 type속성보다 더 많은 유형을 제공합니다(아래 예 참조).


브라우저 지원

Attribute
type Yes Yes Yes Yes Yes

통사론

<ol type="1|a|A|i|I">

속성 값

Value Description
1 Default. Decimal numbers (1, 2, 3, 4)
a Alphabetically ordered list, lowercase (a, b, c, d)
A Alphabetically ordered list, uppercase (A, B, C, D)
i Roman numbers, lowercase (i, ii, iii, iv)
I Roman numbers, uppercase (I, II, III, IV)

더 많은 예

예시

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>

❮ HTML <ol> 태그