Answers for "how to divide web page into different sections which scroll independently"

0

how to divide web page into different sections which scroll independently

#content, html, body {
    height: 98%;
}
#left {
    float: left;
    width: 50%;
    background: red;
    height: 100%;
    overflow: scroll;
}
#right {
    float: left;
    width: 50%;
    background: blue;
    height: 100%;
    overflow: scroll;
}
Posted by: Guest on February-23-2021

Code answers related to "how to divide web page into different sections which scroll independently"

Browse Popular Code Answers by Language