背景图片不包括整个网页

正如标题所说,我的背景图片不包括整个页面。我一直在与各种设置搞乱,没有运气。背景图片不包括整个网页

这里是链接到CSS和HTML内容:

https://cs.iupui.edu/~jweilham/n341/background.html

https://cs.iupui.edu/~jweilham/n341/background.css

回答:

如果我理解correctyle,问题是,当你向下滚动,图像不包括休息的页面。你可以很容易地解决这个问题。在您的css文件中,只需将position: absolute替换为position: fixed即可。

#animatedBackground { 

position: fixed;

}

回答:

添加你的背景body标签

html, body { 

font-family: "Trebuchet MS", sans-serif;

margin: 50px;

background: url("clouds.png");

}

内它会解决你的问题。

回答:

的问题是DIV#animatedBackground不包含div id ='animatedBackground'

<div id="animatedBackground"> 

// All other including div#accordion,fieldset,form

</div>

以上是 背景图片不包括整个网页 的全部内容, 来源链接: utcz.com/qa/259239.html

回到顶部