我希望我的背景能够横向响应屏幕尺寸变化,我不想要它周围的灰框。
div的CSS:
.col-xs-8.arrow-red {
background-image: url(../img/arrow-red.png);
background-repeat: no-repeat;
background-size: 100%;
background-position: center center;
height: 135px;
}
这是在桌面上: 这是在iPad上:
答案 0 :(得分:0)
您可以为背景设置固定高度; 像这样使用 -
-o-background-size:100% 50px;
-webkit-background-size:100% 50px;
-moz-background-size:100% 50px;
background-size:100% 50px;