adikahorvath
1/11/2014 - 1:12 PM

fixed element vs flash in chrome

fixed element vs flash in chrome

<div class="fixedbar">
  // some flashbanner
</div>
.fixedbar { 
  position: fixed;
  top: 100px;
  
  /* gist */
  -webkit-backface-visibility: hidden;
  -webkit-transform: translateZ(0);
}