javascript - position fixed; height 100 is set but it is not the width and height of the browser's visible window. Please clarify.
天蓬老师
天蓬老师 2017-06-30 09:59:31
0
4
731

The following css style code is set, but the displayed height is not full screen, as shown in the figure.

.ss_hide{
    position: fixed;
    background: rgba(0,0,0,.2);
    height: 100%;
    width: 100%;
}

天蓬老师
天蓬老师

欢迎选择我的课程,让我们一起见证您的进步~~

reply all(4)
阿神

Recommended to use in full screen

top: 0;
bottom: 0;
left: 0;
right: 0;
学霸

Check whether the size of your body and html are full screen. Or 100vh high and 100vw wide

曾经蜡笔没有小新

You must also add top:0;left:0;

淡淡烟草味

Absolute positioning is out of the document flow, right? Since everything is absolutely positioned top:0;left:0;right:0;bottom:0; just covers the screen

Latest Downloads
More>
Web Effects
Website Source Code
Website Materials
Front End Template