CSS List Styles:

Property Description Example
list-style-type sets the type of bullet used for list items:
  • disc
  • circle
  • square
  • decimal
  • upper-roman
  • lower-roman
  • upper-alpha
  • lower-alpha
<STYLE>
LI.square{
list-style-type: square;}
</STYLE>

------
<UL>
<LI class="square">white
<LI class="square">green
</UL>

line-style-position specifies the position of wrapping text with respect to the bullet:
  • inside (aligned with bullet)
  • outside (aligned with first letter in first line)
LI{
list-style-image :
url(../images/blue-bullet.gif);}
list-style-image allows you to create your own bullet image