背景图宽高100%无法无法显示的问题【body设置relative,当前元素absolute】

以下1,2两个关键元素
body{
  width:100%;
  height:100%;
  position:relative; //1
}
.login-form {
width: 100%;
background:url(./img/loginbg.png) no-repeat;
height:100%;
background-size: 100% 100%;
position: absolute; //2
background-position:center;
z-index:4;
}

猜你喜欢

转载自www.cnblogs.com/lj8023/p/9789578.html
今日推荐