UL list style not applying
Solution 1:
You need to include the following in your css:
li { display: list-item; }
This triggers Firefox to show the disc.
Solution 2:
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
Solution 3:
If I'm not mistaken, you should be applying this rule to the li, not the ul.
ul li {list-style-type: disc;}
Solution 4:
I had this problem and it turned out I didn't have any padding on the ul, which was stopping the discs from being visible.
Margin messes with this too