0
What is <ol start=""> used for ?!!
3 ответов
+ 2
'start' is the ordering number to start the ordered list... ever in decimal format ( even if you define letters to numbered the list ):
<ol start="3" style="list-style-type:lower-roman;">
<li>item 1</li>
<li>item 2</li>
<li>item 3</li>
</ol>
should print:
iii item 1
iv item 2
v item 3
'start' is an Html5 attribut.
'list-style-type' is a CSS property which must be used instead deprecated attribut 'type' of <ol> tag.
+ 1
ol is an ordered list. The start attribute indicates what to use as the starting number of letter in the order. Often used if you want to use letters or if you want to resume numbering after you break the listing.
0
thank u so much i liked this app because people help eachother 😘😘