8

我有一个主页,上面有一些内容。然后我会弹出一个比屏幕本身更长的模式,所以我必须滚动才能看到它。我需要对我的 CSS 做什么才能只制作模态div滚动而不是整个页面?

这是模态的CSS

#overlay {
    visibility: hidden;
    position: absolute;
    left: 45%;
    width:auto;
    border:1px solid #A17E13;
    height:auto;
    text-align:left;
    z-index: 1000; 
}
#overlay div {
    background-color:#FCFBEC;
}

这是 HTML:

<html><body>
    <div>main page</div>
    <div id="overlay">
    <div>
        <div>
             <asp:Label ID="test">Text for modal here</asp:Label>
        </div>
    </div>
    </div>
</body></html>
4

1 回答 1

4

除了模态div,整个页面都不能滚动吗?如果是这样,您可以尝试位置:固定;在页面上。模态必须在位置之外:绝对;

<!DOCTYPE html>
<html>
<head>
<style type="text/css">
#overlay {
    /*visibility: hidden;*/
    position: fixed;
    left: 45%;
    width:auto;
    border:1px solid #A17E13;
    height:900px;
    text-align:left;
    background-color:orange;
}
.scroller {
    height:3000px;
    width:400px;
    background-color:green;
}
</style>
</head>
<body>
    <div id="overlay">
        this is not moving
    </div>

    <div>
        <div class="scroller">
             <asp:Label ID="test">This is moving if big enough</asp:Label>
        </div>
    </div>
</body>
</html>

在这里提琴

于 2013-02-26T21:32:55.033 回答