2016-11-04 64 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