Answers for "html how to allow scroll on fixed position"

CSS
4

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

position fixed is scrolling up when i scroll down

disabling user scaling (pinch to zoom) helped
<meta name="viewport" content="width=device-width, initial-scale=1, user-scalable=no">
Posted by: Guest on August-24-2021

Code answers related to "html how to allow scroll on fixed position"

Browse Popular Code Answers by Language