CSS · 两种背景图片

190 阅读1分钟

背景图片会拉伸

body{
  margin:0;
  width: 100vw;
  height:100vh;
  background: url("./1.png") no-repeat;
  background-size:100% 100%;
}

左右部分显示不到

body{
  margin:0;
  width: 100%;
  height:100vh;
  background: url("http://img.moonsic.cn/bizhi1.png") no-repeat center center;
  background-size:cover;
}