在固定高度的网站上设置背景图像

时间:2015-05-07 10:34:34

标签: html css

在我的目标网页上,我想设置一个出现在精确部分的背景图片。我的设计目前已装箱,因此我将背景图像设置为正文,因为我希望图像显示在整个宽度上(而不仅仅是在我的设置框宽度内)。

gci = get-childitem
% = for-each
$_ = this (inside the for-each)

现在是我屏幕尺寸的70%出现的图像。如何设置它始终显示在整个首页的70%位置?

如果我将其设置为背景位置:0px 1200px;它没有工作,也没有响应。

2 个答案:

答案 0 :(得分:1)

你可以试试这段代码:

body{
  background: url(image/bg.jpg) no-repeat center fixed;
  -webkit-background-size: cover;
  background-size: cover;
}

让我知道这是不是你想要的。

答案 1 :(得分:0)

html {
    background: white url(../img/bg.jpg) no-repeat center center;
    min-height:100%;
    background-size: cover;
}