我很难以所需的方式显示背景图像。 在台式机版本上,即使我以最低的分辨率拍摄,图像也仍然是收缩的,但是当我在手机上尝试时,图像却无法工作。
padding: 0;
margin: 0;
width: 100%;
height: 100%;
background: url("../img/background_photo.png") center fixed;
background-repeat:no-repeat;
background-position: center center;
-webkit-background-size:cover;
-moz-background-size:cover;
-o-background-size:cover;
background-size: cover;
这是背景图片的代码。无论宽度或高度是多少-它都会收缩,因此看起来不错,但是在移动设备上-它不起作用。
我认为问题一定是因为我没有在媒体查询中包含代码,但是当我添加它时-它不再起作用。