手机端内容超出一屏弹出遮罩层的时候如何不让底下内容滑动,如图?
html 部分布局
<body>
<div>
<p>段落1</p>
<p>段落2</p>
<p>段落3</p>
...
<p>段落50</p>
</div>
<div class="fixed"></div>
</body>
css 遮罩样式
.fixed
{
position: absolute;
top: 0;
right: 0;
bottom: 0;
left: 0;
background-color: rgba(0,0,0,.3);
z-index: 999;
}
阿波罗小萨
9 years, 2 months ago