The links in the left menu in this website have a CSS3 transition property of the color, which changes on mouse hover. It's not working in Chrome 16 or 17 (the color change is sudden), whereas other transitions in the website do. It works in Firefox, Opera, and even Safari, which uses webkit like Chrome, so I don't think it might be a problem with my CSS. What then?

Here's my CSS of this part (the full CSS is here):

#menu a
{
color: gray;
transition: color 0.5s;
-moz-transition:color 0.5s; /* Firefox 4 */
-webkit-transition:color 0.5s; /* Safari and Chrome */
-o-transition:color 0.5s; /* Opera */
}

#menu a:visited
{
color: gray;
}

#menu a:hover
{
color: black;
}

UPDATE! Apparently this has probably been fixed in 18 beta. However, if you have encountered this problem, please visit the bug report linked in the accepted answer below and star the issue.

link|improve this question

1  
Works for me (Chrome 15) jsfiddle.net/Kyle_Sevenoaks/YJFqk/1 – Kyle Sevenoaks Dec 13 '11 at 14:31
Works on my Chrome 16 too. Now that's a bummer. Why doesn't the same code work on my website? – Abhranil Das Dec 13 '11 at 14:42
2  
Works for me on your website too :) Try not using beta versions of programs, they're not always so stable. – Kyle Sevenoaks Dec 13 '11 at 14:46
1  
Doesn't work for me anywhere. Tried both latest stable and latest beta of Chrome. Also with Google Web Fonts. – Simon Dec 17 '11 at 3:23
1  
@KyleSevenoaks: It works initially but if you click on your link it stops working (because link becomes :visited). – Robert Koritnik Jan 26 at 8:22
show 1 more comment
feedback

5 Answers

up vote 26 down vote accepted

@Nijikokun I can confirm the same thing. :visited links do not transition correctly in Chrome. Hooray. It seems like this is an issue that cropped up in version 16 and never got fixed. There are a few bug reports open on the Chromium site.

http://code.google.com/p/chromium/issues/detail?id=101245&q=visited%20transition&colspec=ID%20Pri%20Mstone%20ReleaseBlock%20Area%20Feature%20Status%20Owner%20Summary

link|improve this answer
+1. Developers who have arrived here after encountering the problem are requested to star this issue on this bug report link so that it's taken more seriously. – Abhranil Das Feb 16 at 10:01
feedback

This is not a -non- working issue, what it is is the :visited link is not transitioning, so it may work for you if you have not clicked on it, but if you have, it will not.

I do not know a solution, I am still looking for one...

link|improve this answer
I don't really think that's my issue here. I cleared the cache, opened a new incognito window etc. and tried again but the colour still isn't transiting. So it's not a :visited problem. I've seen this problem with color transition in one more page, where the change again was between normal and :hover. In any case, there's a problem with color transitions in this version of chrome. – Abhranil Das Dec 16 '11 at 16:05
1  
Nijikokun's suggestion worked for me. I have the same problem as you Abhranil and clearing my cache made the transition work on unvisited links, both with and without Google Web Font. All visited links stopped working however. – Simon Dec 17 '11 at 2:56
@AbhranilDas it is fixed in version 18 supposedly. – Nijikokun Mar 11 at 12:53
@Nijikokun, yeah, I updated my question some weeks back to include that information. – Abhranil Das Mar 11 at 14:19
feedback

I tried to find a workaround (more details in my blog: http://kyuumeitai.posterous.com/the-case-of-the-chromes-transition-hover-bug)

It seems if you declare a:visited with color (color, background, border-color, etc) transparent it will work as a workaround. I haven't tested extensivelly yet, glad to receive feedback.

link|improve this answer
Your demo works for me, but it's a transition of the background. This bug only occurs, I think, only for color. – Abhranil Das Jan 6 at 4:14
You can make a transition between the same color and changing the opacity. – Álex Acuña Viera Jan 9 at 13:46
This fix works in Chrome 16. – Gregory Bolkenstijn Jan 23 at 17:11
@ÁlexAcuñaViera It didn't work for me to change color opacity to 0. Background worked fine though. – bozdoz Feb 15 at 14:32
feedback

Try using #ccc and #000 rather than gray and black.

edit: Like so: http://jsfiddle.net/qtzEj/

Hope that helps :)

link|improve this answer
Nope, didn't :-( Thanks though. BTW, does it work in your Chrome? – Abhranil Das Dec 13 '11 at 14:34
1  
Yea, I'm on the beta channel. But that is so simple... Try giving Chrome a restart? I know mine sometimes breaks transitions (especially 3d) after an update... – will Dec 13 '11 at 14:38
I don't think that's the issue, Will. Kyle's example above uses 'gray' and 'black' and still works in my Chrome 16. But somehow the same code on my website doesn't. – Abhranil Das Dec 13 '11 at 14:41
Or maybe it is. – Abhranil Das Dec 13 '11 at 14:55
feedback

Two of my link transition work, but the rest doesnt in chrome. They all use the same setting. It seems they work when the link is either mailto: or callto: -- oddly strange if you ask me.

link|improve this answer
It's a Chrome bug. Please follow Darren's link in one of the answers and star the bug report. And since your post wasn't an answer, it's better you add such posts as comments. – Abhranil Das Dec 18 '11 at 11:37
feedback

Your Answer

 
or
required, but never shown

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