UL list style not applying
and you can also give a left-margin if the reset.css you are using make all margin null : that means :
li {
list-style: disc outside none;
display: list-item;
margin-left: 1em;
}
Assuming you apply this css after the reset, it should work !
Matthieu Ricaud
You need to include the following in your css:
li { display: list-item; }
This triggers Firefox to show the disc.