Set OL list style type to lower-latin in HTML and CSS

Description

The following code shows how to set OL list style type to lower-latin.

Example


<html>
<head>
<style type='text/css'>
ol {<!--from  ww  w  . j  a  v  a  2s .c  o m-->
font-family: sans-serif;
list-style-type: lower-latin;
}
</style>
</head>
<body>
<ol>
<li>This is the first list item.</li>
<li>This is the second list item.</li>
<li>This is the third list item.</li>
<li>This is the fourth list item.</li>
<li>This is the fifth list item.</li>
</ol>
</body>
</html>

Click to view the demo

The code above generates the following result.

Set OL list style type to lower-latin in HTML and CSS