list style css

CSS
list-style: none;Specify all the list properties in one declaration:

 ul
 {

   list-style: square inside url("sqpurple.gif");

 }
 
The list-style property is a shorthand for the following properties:

  list-style-type
  list-style-position
  list-style-imageul.a {
  list-style-type: circle;
}

ul.b {
  list-style-type: square;
}

ol.c {
  list-style-type: upper-roman;
}

ol.d {
  list-style-type: lower-alpha;
}ul.a {
  list-style-type: circle;
}

ul.b {
  list-style-type: square;
}

ol.c {
  list-style-type: upper-roman;
}

ol.d {
  list-style-type: lower-alpha;
}
Source

Also in CSS: