第1个回答 推荐于2017-09-10
第一种方式:直接设置插入图片的大小
<img src="xx.jpg" width="200px" height="100px" alt="xx" title="xx" />
第二种方式:Css中通过背景插入图片,来设置插入图片的大小
<style type="text/css">
.bg{ width:200px; height:100px;background-image:url(images/22.png);}
</style>
<input type="button" class="bg"/>
个人建议做好图片的尺寸,不要通过代码来修改是最好的。谢谢!