使用背景定位底部属性

时间:2016-03-23 14:07:03

标签: html css

我正在尝试将背景图像放在页面的末尾(在底栏),但关键字底部不起作用,如果我使用像900px或55em它确实有效但在检查元素显示在页面中间。

<!DOCTYPE html>
<html>
  <head>
    <title>Test Website</title>
    <style type="text/css">
      body{                                                         
        background: url('google2.png') no-repeat center bottom;
      } 
    </style>
  </head>
  <body>

  </body>
</html>

1 个答案:

答案 0 :(得分:1)

body似乎没有达到全高。所以在CSS中添加:

html, body {
  height: 100%;
}