0
In list, <ol> give numbering and <ul> give bullets. Anything else?
maybe roman number (I, II, III) or alphabet (a, b, c) or arrows (->)
6 Antworten
+ 3
roman number, alphabet are considering to be 'numbered' types ( mean 'ordered' )...
I don't remember if arrows are built-in option ( there is a lot, take a look at references ), but anyway, you can style it as you want/need.
https://developer.mozilla.org/en-US/docs/Web/CSS/list-style-type
http://www.w3schools.com/cssref/pr_list-style-type.asp
+ 3
By clicking on and diving in the previously posted links ^^
#myList1 { list-style-type:upper-roman; }
#myList2 { list-style-type:lower-latin; }
<ol id="myList1">...</ol>
<ol id="myList2">...</ol>
+ 2
@Abo Hafez:
You can, but you must avoid... because 'type' attribute is deprecated in Html5: you should use css to style whenever it's possible ;)
+ 1
@visph how to make roman number and alphabet as numbering?
0
thanks
0
you can use the attribute <ol type="i"> for small roman numbering and <ol type="l"> for capital one