Answers for "how to make div fixed position while scrolling"

CSS
-1

how to scroll fixed position

.fixed-content {
    top: 0;
    bottom:0;
    position:fixed;
    overflow-y:scroll;
    overflow-x:hidden;
}
Posted by: Guest on June-20-2020
2

relative position div is overlapping fixed or sticky header

.nav-bar{
    position:sticky;
    top:0px;
    font-family: Arial, Helvetica, sans-serif;
    border-bottom:solid rgb(179, 173, 173) 1px;
    background-color: rgb(255, 255, 255);
    z-index: 1
}
Posted by: Guest on July-01-2021

Code answers related to "how to make div fixed position while scrolling"

Browse Popular Code Answers by Language