我正在尋找使用bootstrap創建輪播。我希望圖像(具有不同的寬度和高度)以固定的比例顯示,。我嘗試使用CSS的所有內容都會中斷並且圖像比率會中斷並繼承傳送帶的大小。Twitter Bootstrap旋轉木馬圖像比例
CSS
.carousel .item > img {
position: absolute;
top: 0;
left: 0;
min-width: 100%;
height: 702px;
max-width: none;
}
html代碼:
<div id="myCarousel" class="carousel slide">
<div class="carousel-inner">
<div class="active item">
<img src="image1.jpg"/>
</div>
<div class="item">
<img src="image1.jpg"/>
</div>
</div>
</div>
我應該尋找,保持圖像的比或有解決方法的另一個旋轉木馬的解決方案?
編輯1:
.carousel .item > img {
max-width: 100%;
height: 100%;
width: auto;
text-align: center;
margin: 0 auto;
}
你是什麼意思是什麼呢?你想將圖像拉伸到容器大小還是隻填充寬度? –