I have just been playing around in FF32 & Safari 7, with position: sticky. And it works perfecly with top: 0px or left: 0px (to st
position: sticky
top: 0px
left: 0px
.sticky-container { position: sticky; top: 100vh; // push it to the bottom from top transform: translateY(-100%); // move it up again depending on its own height width: 100%; background: white; padding: 20px 0; }