views:

619

answers:

3

Here is the code I am using:

.customBulletList {
    list-style-image: url(images/bullet.png);
}

The weird thing is that it shows up in Firefox, Chrome, Safari, and Opera. Is this CSS property not supported in IE or something?

Thanks in advance.

+1  A: 

Use a background-image instead (with additional padding to the left) and set list-style to none.

Labuschin
+3  A: 

it is implemented. Probably it's problem of margins, padding, that are counted wrong and put image outside visible area.

Loki
Yup: the space that the list image is displayed in is created by margins in IE, but padding in other browsers. (Or vice versa, I forget.) Sounds like that.
Paul D. Waite
A: 

I belive that IE6 does not supportlist-style-image!

code-zoop
http://www.w3schools.com/Css/pr_list-style-image.asp It's supported
marcgg
Where does it say that?
Paul D. Waite
Sorry, you are right. But I have seen promblems with IE6 and list-style-image togehter with float!
code-zoop