Joe: UL Formatierung

Beitrag lesen

Hallo,

ich habe eine kleine Schwierigkeit mit der Darstellung im IE und den Geckobrowsern.

Folgendes:
<ul class="news">
   <li>xxx</li>
   <li>xxx</li>
   <li>xxx</li>
</ul>

CSS:
ul {
  list-style-type : none;
  margin : 0px 0px 0px 0px;
  padding : 0px 0px 0px 0px;
}
li {
  margin : 0px 0px 0px 0px;
  color : #364967;
}
ul.news li {
  list-style-image : url(../images/bullet.gif);
  margin : 0px 0px 10px 16px;
  padding : 0px 0px 0px 0px;
}

Frage:
Wie bekomme ich es hin, dass sowohl im IE als auch im FF die position der Bullets und der Abstand zum Text gleich ist?

Danke