2013-04-23 159 views
0

要調整圖像與jQuery函數調整容器內的圖像大小?

$('div.container').resizable({ aspectRatio:true})

我把圖像在這樣一個div:

.container { width:350px; height:auto; background-color:black} 
.container img { width:100%; height:auto} 

<div class=container> 
    <img .../> 
</div> 

但你可以在這裏看到住http://jsfiddle.net/Gz4ts/ 總是有一點點底部的邊界。

我該如何解決這個問題?

回答

0

您應該使用max-width代替width

.container img { max-width:100%; height:auto}