调整图像大小与宽度和高度成比例

时间:2012-10-22 06:34:26

标签: php css

  

可能重复:
  how to create proportional image height/width

高度应按比例调整,以便产生 缩略图不会失真。但据我所知,没有像

这样的属性
<IMG SRC=...... WIDTH=70 HEIGHT="Adjust proportional to Width"> 

PHP或css ..任何人请帮助

2 个答案:

答案 0 :(得分:2)

您只需在CSS中添加width属性即可...
示例:http://jsfiddle.net/NbzDK/

HTML

<img src="whatever.jpg" class="scaled" />

CSS

.scaled{
    width: 300px;
    /* height will adjust automatically to fit */
}

答案 1 :(得分:2)

Yo也可以使用这种语法。

<IMG SRC=...... style="width:70px; height:auto;">