首页 > 解决方案 > 为什么我的背景图像在不同的屏幕尺寸上不断变化?

问题描述

我网站的背景图片在页面调整大小时不断变化。我似乎无法弄清楚它为什么这样做。这是我的代码:

header {
  background-image: url('../img/header-bg.jpg');
  background-repeat: no-repeat;
  background-attachment: scroll;
  background-position: center center;
  -webkit-background-size: cover;
  -moz-background-size: cover;
  background-size: cover;
  -o-background-size: cover;
  text-align: center;
  color: white;
}

标签: phpcss

解决方案


推荐阅读