vote up 2 vote down star

I'm having a problem using CSS's display:inline property with the list-style-image: property on <li> tags. Basically, I want to output the following:

* Link 1  * Link 2

where * represents an image.

I'm doing this with the following bit of HTML:

<ol class="widgets">
    <li class="l1">Link 1</li>
    <li class="l2">Link 2</li>
</ol>

which is styled with the following bit of CSS:

ol.widgets { list-style-type:none; }

ol.widgets li { display:inline;
                margin-left:10px; }

ol.widgets li.l1 { list-style-image:url(image1.gif); }

ol.widgets li.l2 { list-style-image:url(image2.gif); }

The problem is that when the list items are displayed inline, the images associated with the list items do not appear. They do appear if I take out the display:inline property on the <li> tag.

Is there a way to make the images appear even when the list items are displayed inline, or is that just impossible?

flag

4 Answers

vote up 5 vote down check

try using float: left (or right) instead of display: inline - inline display replaces list-item display which is what adds the bullet points

link|flag
Great! It still didn't look quite right (the images overlapped some text), but adding list-style-position:inside to all <li> elements did the trick. Thanks! – mipadi Dec 9 '08 at 21:39
This doesn't appear to work. I've tried in IE7 and Chrome. – jmillikan Dec 9 '08 at 21:39
something else is wrong then, this is the correct technique. try appropriate margins on the <li>'s and failing that try it in a simple test page – annakata Dec 9 '08 at 21:47
vote up 1 vote down

You want the list items to line up next to each other, but not really be inline elements. So float them instead:

ol.widgets li { 
    float: left;
    margin-left: 10px;
}
link|flag
vote up 1 vote down

If you look at the 'display' property in the CSS spec, you will see that 'list-item' is specifically a display type. When you set an item to "inline", you're replacing the default display type of list-item, and the marker is specifically a part of the list-item type.

The above answer suggests float, but I've tried that and it doesn't work (at least on Chrome). According to the spec, if you set your boxes to float left or right,"The 'display' is ignored, unless it has the value 'none'." I take this to mean that the default display type of 'list-item' is gone (taking the marker with it) as soon as you float the element.

Edit: Yeah, I guess I was wrong. See top entry. :)

link|flag
vote up 1 vote down

I would suggest not to use list-style-image, as it behaves quite differently in different browsers, especially the image position

instead, you can use something like this

ol.widgets,
ol.widgets li { list-style: none; }
ol.widgets li { padding-left: 20px; backgroud: transparent ("image") no-repeat x y; }

it works in all browsers and would give you the identical result in different browsers.

link|flag
I actually think this is probably the right tack to take on the bullet images, but they should still be floated not inlined – annakata Dec 9 '08 at 21:48
yep, inline sometimes causes list-style-position problems, it's frustrating in IE. – Liwen Dec 9 '08 at 22:14

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.