How can I add roman no. List? | Sololearn: Learn to code for FREE!
Новый курс! Каждый программист должен знать генеративный ИИ!
Попробуйте бесплатный урок
+ 2

How can I add roman no. List?

How can I add roman no. List?

19th Jun 2018, 1:01 PM
Anish Basnet
Anish Basnet - avatar
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
19th Jun 2018, 1:48 PM
Amethyst Animion
Amethyst Animion - avatar
+ 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
19th Jun 2018, 9:18 PM
Oshin Bajaj
Oshin Bajaj - avatar