Computer Science, asked by Nishith7901, 11 months ago

Which attribute can be used to change its number within an ordered list?

Answers

Answered by amy001
1

<OL TYPE="1">

Hope it helps

Answered by junebride0902
0

Answer:

The value attribute may be used on an individual <li> element within an ordered list to change its value within the list.

Explanation:

The number of any list item appearing below a list item with a value attribute will be recalculated accordingly.

As an example, if the second list item has a value attribute value of 9, the number on that list item marker will appear as if it is the ninth item. All subsequent list items will be numbered upwards from 9.

1    <ol>

2   <li>Head north on N Halsted St</li>

3   <li value="9">Turn right on W Diversey Pkwy</li>

4   <li>Turn left on N Orchard St</li>

5   </ol>

According to https://learn.shayhowe.com/html-css/creating-lists/

Similar questions