Reputation: 68710
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
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
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