Does anybody know why this is happening?
On all the anchors, I have:
-webkit-transition: all .2s ease-in-out;
-moz-transition: all .2s ease-in-out;
-o-transition: all .2s ease-in-out;
transition: all .2s ease-in-out;
Why is that 'flash' occurring?
Update
By flash, I mean where the the H1 goes from purple to white.
Update 2
It seems to happen almost all anchor links.
For the example which is the logo, the HTML is:
<h1 class="logo"><a href="/">Test</a></h1>
In the CSS I have:
a {
text-decoration: none;
color: white;
-webkit-transition: all .2s ease-in-out;
-moz-transition: all .2s ease-in-out;
-o-transition: all .2s ease-in-out;
transition: all .2s ease-in-out;
}
The h1 is in header and for the header, I have certain CSS for the header links:
.header a {
color: white;
text-shadow: 0 -1px rgba(0,0,0,0.2);
}
And for the h1, I have:
h1 {
margin: 0;
float: left;
font-family: "proxima-nova";
font-size: 26px;
font-weight: 800;
text-transform: uppercase;
letter-spacing: 2px;
height: 30px;
line-height: 30px;
}