So I have these rules:

a{
  background-color: transparent;
  -webkit-transition: background-color .3s ease-in-out;
  -moz-transition: background-color .3s ease-in-out;
  -o-transition: background-color .3s ease-in-out;
  -ms-transition: background-color .3s ease-in-out;
  transition: background-color .3s ease-in-out;
}

a:hover{
 background-color: #fff;
}

which are supposed to make the browser fade in/out a white background on mouse over.

It works in Chrome and Firefox, but in Opera it fades from a grey color to white, instead of transparent to white...

How can I fix that?

Thank you

link|improve this question

feedback

1 Answer

up vote 3 down vote accepted

I don't know the answer to your explicit question, but maybe if you transition from rbga rather than from transparency?

a{
  background-color: rgba(255,255,255,1);
}
a:hover{
  background-color: rgba(255,255,255,0);
}
link|improve this answer
2  
Should that be rgba? ;) – Joe Nov 3 '11 at 18:29
doesn't work... (same thing happens) – Alex Nov 3 '11 at 18:39
Thanks for the rbga -> rgba fix peeps... – Steve Perks Nov 3 '11 at 19:06
Alex - looks like this is a known issue... my.opera.com/community/forums/topic.dml?id=1071922 – Steve Perks Nov 3 '11 at 19:06
ok I fixed it with background-color: rgba(255,255,255, 0); thanks steve ;) – Alex Nov 3 '11 at 19:16
feedback

Your Answer

 
or
required, but never shown

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