LIST-STYLE Property In CSS
list-style Property in CSS
list-style property Shorthand property to declare three list properties at once.
Possible Value:
Separate values by a space in the following order (those that are not defined will use inherited or default initial values): list-style-type list-style-position list-style-image
Exampleul { list-style:disc inside url(image.gif); }
ol { list-style:upper-roman outside; }