Mozilla and HTML Unordered Lists

For general computer discussion & help, come here

Moderators: Bakhtosh, EvilHomer3k

Post Reply
User avatar
Peacedog
Posts: 13148
Joined: Tue Oct 12, 2004 7:11 pm
Location: Despair, level 5
Contact:

Mozilla and HTML Unordered Lists

Post 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.
User avatar
Peacedog
Posts: 13148
Joined: Tue Oct 12, 2004 7:11 pm
Location: Despair, level 5
Contact:

Post 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.
User avatar
Gedd
Technical Admin
Posts: 2812
Joined: Wed Oct 13, 2004 12:00 am

Post 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>
Post Reply