1 2 3 4 5 6 7 8 9 10 11 12 13
<!DOCTYPE html> <html> <body> <span id="x" style="position: sticky; bottom: 75px;"> <div></div> </span> <script> document.addEventListener("MozReftestInvalidate", function() { document.getElementById('x').style.bottom = '-3000px'; }); </script> </body> </html>