VOOZH about

URL: https://www.geeksforgeeks.org/css/bulma-content-ordered-lists-alternatives/

⇱ Bulma Content Ordered Lists Alternatives - GeeksforGeeks


  • Courses
  • Tutorials
  • Interview Prep

Bulma Content Ordered Lists Alternatives

Last Updated : 23 Jul, 2025

Bulma Content Ordered list alternative is used to specify the order type for displaying. It works as an HTML ol type attribute.

This defines which type (1, A, a, I, and i) of the order you want in your list numeric, alphabetic, or roman numbers.

Bulma Content Ordered list alternative class:

  • is-lower-alpha: It defines the list items in alphabetically ordered lowercase letters. (a,b,c,...)
  • is-lower-roman: It defines the list items in lowercase roman number order. (i, ii, iii,…)
  • is-upper-alpha: It defines the list items in alphabetically ordered uppercase letters. (A, B, C,...)
  • is-upper-roman: It defines the list items in uppercase roman number order. (I, II, III,...)

Syntax:

<ol class="Content Ordered list alternative Class">
 <li></li>
 <li></li>
 ....
 <li></li>
</ol>

Note: The default order list is a numeric order list.

Example: In this example, we will see all the alternatives in an ordered list like lowercase, uppercase, roman, and alphabetic.

Output:

👁 Bulma Content Ordered lists alternatives

Reference: https://bulma.io/documentation/elements/content/#ordered-lists-alternatives

Comment
Article Tags: