If you visit http://www.framingham.edu/ in the latest stable version of Chrome, you'll notice that the CSS3 transition for the "Spring Commencement" link does not work. It also doesn't work for the "More Events" text (but it does work for the blue background behind it). If you try the same thing in Safari, Firefox, or Opera, it works fine. I don't really understand why this is happening. Could it be my CSS3 that's causing it to break specifically for Chrome?
CSS:
#events span a {
color: #B00932;
text-decoration: none;
-webkit-transition: color 0.6s ease-in;
-moz-transition: color 0.6s ease-in;
-o-transition: color 0.6s ease-in;
-ms-transition: color 0.6s ease-in;
transition: color 0.6s ease-in;
}
#events span a:hover {
color: #ecb220;
text-decoration: none;
}
.moreEvents {
text-align: center;
font-weight: bold;
padding: 10px 0;
background-color: #00345c;
-webkit-transition: background-color 0.6s ease-in, color 0.6s ease-in;
-moz-transition: background-color 0.6s ease-in, color 0.6s ease-in;
-o-transition: background-color 0.6s ease-in, color 0.6s ease-in;
-ms-transition: background-color 0.6s ease-in, color 0.6s ease-in;
transition: background-color 0.6s ease-in, color 0.6s ease-in;
}
.moreEvents:hover {
background-color: #eeb220;
}
.moreEvents a {
color: #fff;
-webkit-transition: color 0.6s ease-in;
-moz-transition: color 0.6s ease-in;
-o-transition: color 0.6s ease-in;
-ms-transition: color 0.6s ease-in;
transition: color 0.6s ease-in;
}
.moreEvents a:hover {
color: #000;
}
EDIT: Since zim2411 said that it worked for him in both Chrome and Firefox, I decided to try it again today and it worked! The only thing that I could think of that I did between yesterday and today was clear the caches of all my browsers and such. I'm guessing it has something to do with visited links because when I click on the "Spring Commencement" link and then go back to that page, the transition no longer works. Can anyone else confirm that the transition doesn't work after visiting the link? It still only happens in Chrome...