我有问题。我想制作一个整页大小的背景,但我总是遇到同样的问题:
正如您所看到的,我的页面高于100%,当我滚动背景时结束。在div id=wrapper
上添加了背景这里是我代码的一部分
HTML(JQ):
<body>
<div id='wrapper'>
<!--content-->
</div>
<script>
$(document).ready(function() {
$('#wrapper').fadeIn(1000);
})
</script>
CSS:
html,body {
height:100%;
}
body {
min-height: 100%;
}
#wrapper {
background: url(../bg.jpg) no-repeat center center fixed;
-webkit-background-size: cover;
-moz-background-size: cover;
-o-background-size: cover;
background-size: cover;
height:100%;
display:none;
background-attachment: fixed;
}
我正在寻找答案并在Stackoverflow中阅读问题(f.e。https://stackoverflow.com/a/6654996/3726786)但没有任何帮助。谢谢你的帮助!
答案 0 :(得分:1)
在您的代码中image
不会超过100%
,因为它已经将height of 100%
分配给body
,现在您可以看到scroll-bar at y-axis
和那个,因为您还没有更改margin property
的默认8px to 0px
。
body{
margin:8px; /*Default margin set that to 0px*/
}
请参阅这两个jsFiddle
答案 1 :(得分:0)