如何将网站背景与浏览器的高度相匹配? 这是我的背景代码CSS。
#header {
position: relative;
background: url(girl.jpg) no-repeat fixed center bottom / cover transparent;
text-align: center;
}
我不想为图像设置高度:100%,因为我不想长按向下滚动。我希望我的浏览器宽度适合背景。有什么帮助吗?
http://i.stack.imgur.com/w1k18.jpg< - 这是指向网站截图的链接。
答案 0 :(得分:1)
试试这个
body
{
background: url(girl.jpg) no-repeat fixed center bottom / cover transparent;
}
在css文件中添加上述css代码......