Check out the code snippet below:
The list items are correctly aligned to the right, but the numbers are not. How can we adjust the CSS so that the numbers align properly on the right as well?
ol {
width: 15vw;
}
<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>