高度应按比例调整,以便产生 缩略图不会失真。但据我所知,没有像
这样的属性<IMG SRC=...... WIDTH=70 HEIGHT="Adjust proportional to Width">
PHP或css ..任何人请帮助
答案 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;">