0

How can I style the numbers on the list? I made an ordered list and I want to style the numbers To delete the dots And Change color and background color

Kameron
  • 10,240
  • 4
  • 13
  • 26
  • If you already have the knowledge on the html part, i suggest checking this [w3schools CSS Styling Lists](https://www.w3schools.com/css/css_list.asp) i think it covers your needs. – ioannis-kokkalis Apr 22 '22 at 19:12
  • CSS counter is also an option : https://developer.mozilla.org/en-US/docs/Web/CSS/CSS_Counter_Styles/Using_CSS_counters It also can be applied to any HTML structure/elements aside lists – G-Cyrillus Apr 22 '22 at 19:22

1 Answers1

-1

Here is a basic sample of what you are asking for:

ol {
  list-style-type: none;
  color: red;
  background: blue;
}
<ol>
  <li>item 1</li>
  <li>item 2</li>
</ol>