Horje

How to Set different list types (with CSS):

See the Example and Learn More.

index.html
Example: HTML
<!DOCTYPE html>
<html>
<body>

<h1>Specify list type with CSS</h1>

<ol style="list-style-type:upper-roman">
  <li>Coffee</li>
  <li>Tea</li>
  <li>Milk</li>
</ol>

<ol style="list-style-type:lower-alpha">
  <li>Coffee</li>
  <li>Tea</li>
  <li>Milk</li>
</ol>

</body>
</html>

Output should be:

How to Set different list types (with CSS):




Type:
html
Category:
Web Tutorial
Sub Category:
HTML Tag
Uploaded by:
Admin