Answers for "how to make section fixed and scroll and still fixed"

CSS
0

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

Code answers related to "how to make section fixed and scroll and still fixed"

Browse Popular Code Answers by Language