There is an <ol> (ordered list) tag in my HTML document. I would like it to display elements in the following format:
(i) Item 1 (ii) Item 2 (iii) Item 3
I am currently working with the following HTML code:
<ol type="i"> <li>Item 1</li> <li>Item 2</li> <li>Item 3</li> </ol>
This gives me the following result:
i. Item 1 ii. Item 2 iii. Item 3
Is it possible to display my list at will, which I mentioned at the beginning of this question?
EDIT: Next question, which is also part of the accepted answer
How can I get wrapped items (items that are too long for one line) to automatically start new lines on the same tab?
source share