tags:

views:

31

answers:

2

NOOB question...

Does LI:HOVER{background:url(image.jpg) 0 0 no-repeat;} work across all browsers?

+1  A: 

http://www.quirksmode.org/css/contents.html , yes, but <= IE6 has some problems, but who cares?

Terw
if by "some problems" you mean that it isn't working at all, i agree. `:hover` only works for links in IE6, and OP's question is with regards to `LI`.
David Hedlund
+ one for that ;) But still, who cares about <IE7 ? Even Microsoft doesn't want it anymore
Terw
Is there a way to battle the "flicker" between loading image? when i mouse off, i get the white flicker...
tony noriega
check out how to use css sprite images: http://css-tricks.com/css-sprites/
Terw
+1  A: 

IE versions older than 7 won't support it.

I recommend IETester.

Also, background-repeat is supposed to be defined before background-position, although most browsers will understand the values in whichever order they are given.

David Hedlund