Answers for "make fixed content scrollable"

CSS
0

fixed div with scrollable content

.fixed-content {
    overflow-y:scroll;
    overflow-x:scroll;
}
Posted by: Guest on June-05-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

Browse Popular Code Answers by Language