Home  >  Q&A  >  body text

Tips for aligning ordered list numbers to the right

<p>Consider the following code:</p> <p>In the output, the list items are indeed on the right, but the numbers are not in the right position. How can I align the numbers to the right position as well? </p> <p> <pre class="brush:css;toolbar:false;">ol { width: 15vw; }</pre> <pre class="brush:html;toolbar:false;"><ol style="text-align:right;"> <li>Orange</li> <li>Apple</li> <li>Mango</li> <li>Pineapple</li> <li>Pear</li> <li>Grape</li> <li>Watermelon</li> <li>Strawberry</li> <li>Blueberry</li> <li>Raspberry</li> <li>Kiwi</li> </ol></pre> </p>
P粉174151913P粉174151913436 days ago633

reply all(1)I'll reply

  • P粉757432491

    P粉7574324912023-09-01 09:14:47

    Add the rtl direction attribute to the ol tag: dir="rtl".

    reply
    0
  • Cancelreply