eozzy
eozzy

Reputation: 68710

IE7 Bug: CSS background hidden, shows on hover

I'm having a weird problem in IE7, the CSS background image (bullet) on some <li>'s are hidden and visible on others. When I hover over them though, they become visible.

I tried adding position:relative on li but it didn't help. How do fix this?

Screenshot:

alt text http://img163.imageshack.us/img163/9261/screenshot20100218at623.png

Thanks!

Upvotes: 1

Views: 608

Answers (2)

ndorfin
ndorfin

Reputation: 476

Position is Everything have a similar sounding issue listed, called the Disappearing List-Background Bug.

I noticed they applied position:relative; to the <ul> not the <li> as you've done. Give that a shot?

Upvotes: 1

Residuum
Residuum

Reputation: 12064

One reason may be that you use list-style-image or list-style property on the li instead of the ul.

Upvotes: 1

Related Questions