Noticed an odd and annoying bug in IE11. Images placed in the background using css with background-attachment fixed do this odd up & down jiggle dance when scrolling. It primarily happens when using the scroll wheel or when using the arrow buttons on the scroll bar. if you scroll by dragging the scroll bar it doesn’t seem to happen.
try this fiddle: http://jsfiddle.net/G6Mdu/ when using IE you can see the image jiggle. On chrome, firefox, etc it works fine.
#test{
height: 510px;
width:100%;
background-position: center top;
background-attachment: fixed;
background-size: cover;
}
any solutions?
box-shadow
from elements that overlap the fixed background. – Aerosol