For general computer discussion & help, come here
Moderators: Bakhtosh , EvilHomer3k
Peacedog
Posts: 13148 Joined: Tue Oct 12, 2004 7:11 pm
Location: Despair, level 5
Contact:
Post
by Peacedog » Wed Dec 15, 2004 10:04 am
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.
Peacedog
Posts: 13148 Joined: Tue Oct 12, 2004 7:11 pm
Location: Despair, level 5
Contact:
Post
by Peacedog » Wed Dec 15, 2004 11:13 am
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.
Gedd
Technical Admin
Posts: 2812 Joined: Wed Oct 13, 2004 12:00 am
Post
by Gedd » Wed Dec 15, 2004 11:39 am
Just FYI, you should be closing your list item tags:
Code: Select all
<ul>
<li> #1 </li>
<li> #2 </li>
<li> #3 </li>
</ul>