+ 2
How can I add roman no. List?
How can I add roman no. List?
2 ответов
+ 13
you can use css instead
ol {
list-style-type: low-roman;
}
more style, see the css section
https://code.sololearn.com/Wg6anlP7v623/?ref=app
+ 3
In a similar way you can add alphabetical and numeric lists too.
Like type='a' or 'A' or '1' or 'i' or 'I'
By default it is a numbered list.
You can also use start attribute with this, which will start giving the sequence with your specified number.
for eg: <ol type='A' start=26>
This will give your first item the letter 'Z' then 'AA' and so on..
Another Example:
<ol type='i' start=9>
It will start at ix