Answers for "how to set a div to remain sticky on scroll"

CSS
-2

make a div sticky

.fixedElement {
    background-color: #c0c0c0;
    position:fixed;
    top:0;
    width:100%;
    z-index:100;
}
Posted by: Guest on May-11-2020
0

fix scroll css position sticky

html {
  scroll-padding-top: 200px; /* your overlapping header/div height */
}
Posted by: Guest on August-04-2021

Browse Popular Code Answers by Language