身体背景图像不跨越整个高度

时间:2013-04-24 00:47:08

标签: html css

我的身体标签有这个css

background: url(images/homepagebg.jpg) no-repeat center;

但它在页面底部停了下来。图像足够高,可以填满整个屏幕。

有什么想法吗?

2 个答案:

答案 0 :(得分:0)

如果整个屏幕被内容用尽,则HTML正文仅覆盖整个屏幕。

你可以尝试

 body{
    min-height: {height-of-your-image-in-pixels}px;
 }

答案 1 :(得分:0)

我找到了解决方案,我必须添加固定到背景属性的末尾,例如

  background: url(images/homepagebg.jpg) no-repeat center center fixed;