+ 1
what is the code to out roman number in order list (ol)
7 Réponses
+ 8
With Css, use 'list-style-type' set to value 'lower-roman' or 'upper-roman' on <ol> or <ul> element for applying it to all its <li> childs...
+ 5
I was just saying that you could with css ^^
+ 4
@Martin Taylor:
The 'type' attribute is totally supported in Html5: that's one of the rarely attribute related to style wich was not deprecated in the Html5 specifications ^^
+ 4
It's quite logical that only <ol> accept 'type' attribute, as it stand for 'ordered list' while <ul> for 'unordered' (in meaning 'numbered')...
Anyway, through Css both can be customized with 'list-style-type' (as they are also 'unordered' types as bullets and so on ;)
+ 2
Thanks all!!!!
+ 1
<ol type ="i"> your list </ol>
+ 1
type attribute. 'i' for lowercase and 'I' for uppercase