CSS List Color

  • Post category:CSS

Get the code of CSS List Color and watch video tutorials. You can practice using our code editor. Our practical guide will make your learning journey much easier. You can explore the tutorial and learn.

<ol>
  <li>Apple</li>
  <li>Banana</li>
  <li>Orange</li>
</ol>
<ul>
  <li>Tea</li>
  <li>Coffee</li>
  <li>Coca cola</li>
</ul>
ol {
  background: orange;
  padding: 5px 20px;
}
ol li {
  background: mistyrose;
}
ul {
  background: lightblue;
  padding: 5px 20px;
}
ul li {
  background: mistyrose;
  margin: 5px;
}