背景图像如何100%高度和宽度

时间:2013-10-23 11:42:46

标签: css

我在background image中使用过body但是它可以响应,以便高度和高度宽度设置为100%?

1 个答案:

答案 0 :(得分:2)

根据this CSS Tricks Post

html { 
  background: url(images/bg.jpg) no-repeat center center fixed; 
  -webkit-background-size: cover;
  -moz-background-size: cover;
  -o-background-size: cover;
  background-size: cover;
}