I’m having some trouble with the CSS transition property with absolute links in the href in Chrome on my Mac.
I have
a {
-webkit-transition: all 0.3s ease-in-out;
-moz-transition: all 0.3s ease-in-out;
-ms-transition: all 0.3s ease-in-out;
-o-transition: all 0.3s ease-in-out;
transition: all 0.3s ease-in-out;
}
a { color: #333;
a:hover { color: #c3dd11; }
and
<a href="/home/">Link fades</a>
<a href="#">Link fades</a>
<div id="header">
<nav>
<a href="http://danielcgold.com">Link doesn't fades</a>
</nav>
</div>
Here’s a JS fiddle: http://jsfiddle.net/bYBxC/
Any ideas why this isn’t working?
Bug is fixed in the latest version of chrome.