将背景设置为全宽和高度

时间:2016-01-19 08:30:01

标签: html css css3

CSS:

body {
  background: url("https://wallpaperscraft.com/image/mountain_lake_landscape_trees_79396_2560x1600.jpg");
  background-size: cover;
  background-repeat: no-repeat;
}

JSFIDDLE:https://jsfiddle.net/rts05xt2/

我希望图像为全​​宽和全高,如果有人调整浏览器大小,图像将不会再次调整大小,只是保持这样。有什么建议吗?

2 个答案:

答案 0 :(得分:0)

您可以应用以下CSS:

brew install openssl
brew link --force openssl

答案 1 :(得分:0)

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

这是完美的方式