我正在尝试使用具有滚动前div的css将固定背景添加到html页面。但在这之后我的JavaScript表单没有被加载。但当我删除该图像并清除CSS时一切正常,
添加bg图像后style.css:
html{
width:100%;
height:100%;
position:fixed;
background: url('../images/bg.png') no-repeat center;
-webkit-background-size: cover;
-moz-background-size: cover;
-o-background-size: cover;
}
body{
}
.wrap {
position:absolute;
width:100%;
overflow:scroll;
}
但是当我清除它时一切正常,
html{
}
body{
}
.wrap {
}
请参阅附件图片,
和
答案 0 :(得分:0)
background-position: fixed;
而不是
position: fixed;
编辑:虽然我不确定我完全理解你的问题。