请问怎么让html页面固定住。失去滚动条啊。这是苹果页面的一个效果。按了放大镜屏幕就固定住了。
width: 100%;
display: none;
position: fixed;
left: 0;
top: 0;
right: 0;
bottom: 0;
height: 100%;
z-index: 9999;
background: rgba(0,0,0,.4);
我把整个灰色的背景写了这个css。没啥用。。
相关分类