Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

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;
} 
share|improve this question
Can you be more specific? What is transitioning on this page? Also,you should post your HTML for future users who might see this question. – jmeas Dec 23 '12 at 14:18
I visited your page and I saw no 'flash' of any kind (Chrome 22/Win 7). – David Thomas Dec 23 '12 at 14:19
6  
A jsFiddle demo would be great. – simone Dec 23 '12 at 14:19
See the update. – user1919937 Dec 23 '12 at 14:28
with transition: all you animate/change everything you changed maybe only use transition: color and it would be helpful if you post a link to your site or create a jsfiddle or some code – Daniel Kurz Dec 23 '12 at 14:32
show 8 more comments

Know someone who can answer? Share a link to this question via email, Google+, Twitter, or Facebook.

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Browse other questions tagged or ask your own question.