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/ 底部总是有一个小边框。

我怎样才能解决这个问题?

4

2 回答 2

4

但是正如你在这里看到的那样,http://jsfiddle.net/Gz4ts/底部总是有一个小边框。我怎样才能解决这个问题?

只需添加:

display: block;

<img>, 因为它们被默认替换为内联元素

http://jsfiddle.net/Gz4ts/1/

于 2013-04-23T16:48:03.380 回答
0

你应该使用max-width而不是width

  .container img { max-width:100%; height:auto}
于 2013-04-23T16:49:06.167 回答