css控制全屏div样式
版权声明:
本文为博主原创文章,转载请声明原文链接...谢谢。o_0。
更新时间:
2019-03-18 21:28:39
温馨提示:
学无止境,技术类文章有它的时效性,请留意文章更新时间,如发现内容有误请留言指出,防止别人"踩坑",我会及时更新文章
.background {
position: fixed;
_position: absolute;
z-index: 998;
top: 0px;
left: 0px;
width: 100%;
_width: expression(document.documentElement.scrollWidth);
height: 100%;
_height: expression(document.documentElement.scrollHeight);
background: rgb(50,50,50);
background: rgba(0,0,0,0.5);
filter:alpha(opacity=50);
}