0

这个网站上,页脚中有一个背景图片,应该贴在页面底部。我不是指页面的可见部分,而是页面的最底部。然而,在内容很短的页面上——比如这个——它出现在底部上方的一段距离上。

我目前使用的 CSS 是:

html {
  background: url(../images/responsive/bg.svg) no-repeat center center fixed;
  -webkit-background-size: cover;
  -moz-background-size: cover;
  -o-background-size: cover;
  background-size: cover;
  outline:0!important;
}
4

2 回答 2

3

您要求做的是更符合“粘性页脚”的概念。示例教程

于 2013-02-01T16:46:52.593 回答
-7

如何使用 float 属性:

float: bottom;
于 2013-02-01T16:46:53.237 回答