Page 1 of 1

Mozilla and HTML Unordered Lists

Posted: Wed Dec 15, 2004 10:04 am
by Peacedog
I've got an unordered list. It displays with 3 dots in ie (the default). It doesn't display with dots at all in Mozilla. Anyone know how I can fix that?

Code: Select all

<ul>
  <li> #1
  <li> #2
  <li> #3
</ul>
Nothing fancy. The items aren't even indented in mozilla. AFAIK, this is Mozilla 1.0.

Posted: Wed Dec 15, 2004 11:13 am
by Peacedog
And we fixed it, mostly. Some style properties had been snuck in on me that I wasn't aware of. Firefox didn't agree with them.

Posted: Wed Dec 15, 2004 11:39 am
by Gedd
Just FYI, you should be closing your list item tags:

Code: Select all

<ul>
  <li> #1 </li>
  <li> #2 </li>
  <li> #3 </li>
</ul>