如何使背景仅在不同屏幕尺寸上水平调整大小?

时间:2014-12-21 06:00:48

标签: css twitter-bootstrap

我希望我的背景能够横向响应屏幕尺寸变化,我不想要它周围的灰框。

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;
}

这是在桌面上: enter image description here 这是在iPad上:

enter image description here

1 个答案:

答案 0 :(得分:0)

您可以为背景设置固定高度; 像这样使用 -

-o-background-size:100% 50px;
-webkit-background-size:100% 50px;
-moz-background-size:100% 50px;
background-size:100% 50px;

link