when we use

<ul>
<li></li>
<ul>

we get disc in IE and why do firefox display diamond

can you just suggest me how to change this in firefox

Recommended Answers

All 4 Replies

In css you can just change the "list-style-type" to what you want.

ul {
  list-style-type: disc;
}

Buddy its not working

please given me more suggestion

I guess that's the way Firefox by default displays the unordered list elements. Your best bet would be to use some other style for your unordered list elements. Something like:

ul
{
   list-style-type: circle;
}
/* or */
ul
{
   list-style-type: square;
}

That works in FF for me - and IE.

If it doesn't work, look for a syntax error.

Be a part of the DaniWeb community

We're a friendly, industry-focused community of developers, IT pros, digital marketers, and technology enthusiasts meeting, networking, learning, and sharing knowledge.