📜  如何将网页划分为独立滚动的不同部分 - Html 代码示例

📅  最后修改于: 2022-03-11 14:53:13.635000             🧑  作者: Mango

代码示例1
#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;
}