Search
 
SCRIPT & CODE EXAMPLE
 
CODE EXAMPLE FOR HTML

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;
}
Source by stackoverflow.com #
 
PREVIOUS NEXT
Tagged: #divide #web #page #sections #scroll #independently
ADD COMMENT
Topic
Name
8+8 =