نوع HTML <ol> السمة

❮ علامة HTML <ol>

مثال

قائمة مرتبة بأرقام رومانية كبيرة:

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

المزيد من الأمثلة "جربها بنفسك" أدناه.


التعريف والاستخدام

تحدد السمة typeنوع العلامة المراد استخدامها في القائمة (أحرف أو أرقام).

تلميح: تقدم خاصية list-style-type الخاصة بـ CSS أنواعًا أكثر من 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>