自动缩放图片

来源:互联网 发布:win10恢复原始mac地址 编辑:程序博客网 时间:2024/06/03 19:59

防止图片超出边框

//可以只设置宽或者高

style=" height:500px;width:690px;border:1px solid #000;overflow:hidden;" 


<img  style="width:690px;border:1px solid #000;overflow:hidden;" title="xxxxxxx" alt="xxxxxxx"  src="http://xxxxx.jpg" border="0"><br><br>


方法2  只缩小大图 小图变


style="max-width:690px;" 


img{max-width:100px;max-height:100px;}
img{min-width:100px;min-height:100px;}


<img style="max-width:690px;" title="正品"  src="http://www.sss.com/pic.jpg" border="0"><br><br>