2016-11-04 19 views
0

我在我的网站上使用引导传送带。在手机中打开时,图像非常巨大。看看www.nwberryfoundation.org看看我的意思。在这种观点下,有没有办法减少旋转木马?Bootstrap传送带图像在手机上太大

我试过 @media屏幕和(最大宽度:400px){ .carousel {width}:宽度:75%。 } }

似乎没有区别。

回答

0

只需要用下面的代码无需媒体查询和不适用宽度,而不是试图最大宽度

.carousel{ 
    max-width: 300px; // u can changed it based on ur need or play with % 
    margin: 0 auto; // required to center div horizontally 
} 

enter image description here

+0

这为我工作。非常感谢! – Annap

+0

很高兴我可以帮助,如果它为你工作,你可以标记为答案谢谢 – Rahul