當圖像小於400像素時,圖像將按比例調整大小,並在400px處停止垂直縮放,但寬度將繼續縮放(從而扭曲圖像)。有沒有什麼辦法解決這一問題?任何幫助將不勝感激。CSS圖像調整大小失真
CSS:
#gallery{
height:100%;
min-height:400px;
max-height:800px;
min-width:400px;
text-align:center;
width:100%;
}
#gallery .section {
height:80%;
min-height:400px;
max-height:800px;
}
#gallery .section img{
height:100%;
min-height:400px;
max-height:800px;
width:auto;
}
HTML:
<div id="gallery">
<div class="section">
<img src="images/1.jpg" alt="">
</div>
</div>
當大於800像素時也會發生變形。 – user433351
刪除'min-height:400px;'和'max-height:800px;'from'#gallery .section img' – SajithNair