How to add a bullet list to the number list?

Joined
Jul 4, 2023
Messages
570
Reaction score
76
  • Use <ol> for the main numbered list.
  • Inside any <li>, you can nest another list (like <ul> for bullets or another <ol> for sub-numbers).
HTML:
<ol>
  <li>First item</li>
  <li>
    Second item with a bullet list:
    <ul>
      <li>First sub-item</li>
      <li>Second sub-item</li>
    </ul>
  </li>
  <li>Third item</li>
</ol>
1733224226749.png
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Members online

Forum statistics

Threads
474,170
Messages
2,570,925
Members
47,466
Latest member
DrusillaYa

Latest Threads

Top