Answers for "ol align li right"

CSS
0

css ol align center

ol{
    text-align: center;
    list-style-position: inside;
}
Posted by: Guest on February-15-2021
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