简体   繁体   中英

how to lock scrolling on a <div> behind a <div>

I have a page that appends a div to the body of a html. However the issue now is that I have two scrolls going on (one on the new overlaying div and the other one behind it), here's the structure of the page approximately, how do I make it such that only this new appended div is the one that can be scrolled, not behind it.

Here's the structure approxiamtely:

<div class="right col clearfix>
<div class="modal container in">
</div>
</div>

basically I only wanted the modal container in to be the one that scrolls and nothing else.

HTML

<div class="right col clearfix>
    <div class="modal container in"></div>
</div>

CSS

.right col clearfix {
    overflow: hidden;
}
.modal container in {
    width: //your width;
    height: //yourheight;
    overflow: scroll;
}

The technical post webpages of this site follow the CC BY-SA 4.0 protocol. If you need to reprint, please indicate the site URL or the original address.Any question please contact:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM