Answers for "text alignments on html lists"

1

ol text align

.center {
  text-align: center;
  list-style-position: inside;
}

<h4 align="center">HEADLINE</h4>
<ol class="center">
  <li>First Item</li>
</ol>
Posted by: Guest on January-04-2021

Browse Popular Code Answers by Language