Answers for "how make item fixed when scroll down in css"

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
0

css scroll fixed content

.fixed-content {
    top: 0;
    bottom:0;
    position:fixed;
    overflow-y:scroll;
    overflow-x:hidden;
}
Posted by: Guest on July-28-2021

Code answers related to "how make item fixed when scroll down in css"

Browse Popular Code Answers by Language