gpt4 book ai didi

css - 如何让背景图片贴在布局底部?

转载 作者:太空狗 更新时间:2023-10-29 12:38:54 25 4
gpt4 key购买 nike

我有这个背景,css代码是:

body {
background: #FFF url('images/bg.png') no-repeat bottom center;
margin-bottom: -500px;
width: 100%;
height: 100%;
color:#999;
}

图像高 400 像素,我想让它与页面底部对齐。

到目前为止,这只适用于 Firefox。在 Chrome 和 IE 中,背景位置位于顶部中心,而不是底部中心。

最佳答案

您还需要将 html 元素的高度设置为 100%:

html, body {
height: 100%; width: 100%;
padding: 0; margin: 0;
}

body {
background: #FFF url(images/bg.png) no-repeat bottom center;
}

此外,负边距在 IE6/7 中不起作用(不确定 IE8)

关于css - 如何让背景图片贴在布局底部?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/2378243/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com