Re: [css-d] :hover pseudo-class in IE

2005-06-17 Thread Alisha
Bruno Fassino Wrote: In addition to the advices you have already received, you should also consider that in general in IE/Win the following doesn't work: ... a:hover descendant-element-of-a { ... } unless there is also a rule affecting directly ... a:hover { ... } that is exactly what fixed it

Re: [css-d] :hover pseudo-class in IE

2005-06-17 Thread Ingo Chao
Alisha schrieb: I just tried to implement a simple change of background color on a a:hover but i realized it doesn't work at all in IE #foot img { border:none } #foot a:hover img { background: #b55ad4; } Alisha, i have answered this in the thread [Re: [css-d] image mouseover effect wit

Re: [css-d] :hover pseudo-class in IE

2005-06-16 Thread David Hucklesby
On Thu, 16 Jun 2005 20:20:43 +0100, Alisha wrote: > .. >  >  > http://";> >  >  > > and the css easy as it can be.. > > #foot img { > border:none > } > #foot a:hover img { > background: #b55ad4; > } This will not work because you are using a jpeg image. The background goes behind the image, so

Re: [css-d] :hover pseudo-class in IE

2005-06-16 Thread Justin Reid
Alisha > I just tried to implement a simple change of background color on a a:hover > but i realized it doesn't work at all in IE and i really have no idea of > why. > Is this a known issue and is there a way to get around it? This code is saying that you want to apply a background color to the*im

[css-d] :hover pseudo-class in IE

2005-06-16 Thread Alisha
I just tried to implement a simple change of background color on a a:hover but i realized it doesn't work at all in IE and i really have no idea of why. Is this a known issue and is there a way to get around it? the markup is quite simple actually it's like ... http://";> and the css