The list-style property is a shorthand property for defining all the properties of a list in one place.
list-style: [ <list-style-type> <list-style-position> <list-style-image> ] | inherit
Not defined for shorthand properties.
All elements with display value of list-item.
This property is inherited.
standard list
<ol style="list-style: alpha inside none;">
<li>one</li>
<li>two</li>
<li>three</li>
</ol>
- You can use numerical lists in an unordered lists and bullets in an ordered list.

