List Controls
You can use stylesheet attributes to control how lists appear:
- list-style-image can be none (the default) or the url of an image to use as the bullets for the list.
- list-style-position can be inside or outside (the default) depending on where the bullet is to appear relative to the list.
- list-style-type determines what type of bullets are used. Valid values are disc, circle, square, decimal, decimal-leading-zero, lower-roman, upper-roman, lower-greek, lower-alpha, lower-latin, upper-alpha, upper-latin, hebrew, armenian, georgian, cjk-ideographic, hiragana, katakana, hiragana-iroha, katakana-iroha, or none.
Alternatively all of the above can be included into one list-style attribute by specifying them in the order list-style-type, list-style-position, list-style-image with each separated by spaces from the others.
Examples
ol {list-style-type:lower-roman;}
ul {list-style:square inside none;}


