设置图片最大宽度为600px
方式一、控制图片最大宽度
.img{max-width:600px;}
方式二、使用expression只有ie才能识别
.img{width:expression(this.width > 600 ? "600px" : true);}