我有一张背景图片。它的大小是宽200px,高120px。我正在重新设计网站以响应。如果我摆脱高度,图像就会完全消失。
这就是我所拥有的:
height: 120px;
background: url('../img/index.png') no-repeat center;
-webkit-transition: all ease 1s;
-moz-transition: all ease 1s;
-o-transition: all ease 1s;
-ms-transition: all ease 1s;
transition: all ease 1s;
如何摆脱高度以使其响应而不丢失图像?