In: Computer Science
Ordered Lists 4. For the list-style-type CSS property, what value should you use to generate lowercase roman numerals for list items? 5. For the ul element, what does the start attribute do?
Question 4 :
Answer :lower-roman;
Explanation :
Demonstration :
Below is the ordered list that generates the ordered list with lower romans
<ol style="list-style-type: lower-roman;">
<li>HP</li>
<li>Lenovo</li>
<li>Dell</li>
</ol>
Output :
**************************************
Question 5:
Answer :
Demonstration :
Below is the unordered list that starts the number from 50.
**************************************