Set OL list style type to upper-greek in HTML and CSS

Description

The following code shows how to set OL list style type to upper-greek.

Example


<html>
<head>
<style type='text/css'>
ol {<!--from w w  w . ja v  a 2s. c o m-->
font-family: sans-serif;
list-style-type: upper-greek;
}
</style>
</head>
<body>
<ol>
<li>first list item.</li>
<li>second list item.</li>
<li>third list item.</li>
<li>fourth list item.</li>
<li>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 upper-greek in HTML and CSS