我想让我的背景填满100%。它目前在每个页面上,除非内容过大(参见照片(http://i58.tinypic.com/2n18hn8.png))。我尝试了很多不同的东西来解决它,但没有任何工作。如果我将#page-wrapper更改为3000px,它将完全显示背景,但在其他页面上则太大。请帮忙
chrome://flags/#enable-experimental-webkit-features
答案 0 :(得分:0)
在你的身体课上
body{
background-size:cover;
background-image: url('img/cover.png');
background-position: top center;
background-attachment: fixed;
background-repeat: no-repeat;
background-color: #000;
overflow: hidden;
}
试试这个,让我知道你的想法。