Answers for "scroll content on a fixed element"

CSS
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 "scroll content on a fixed element"

Browse Popular Code Answers by Language