请问如何设置img标签图片自…

来源:互联网 发布:梦幻群侠传三优化版 编辑:程序博客网 时间:2024/06/02 05:26
原文地址:请问如何设置img标签图片自动适应高度作者:cssandjs

请问如何设置img标签图片自动适应高度?

 

自动适应,该如何设置CSS,能否实现?

设置CODE:
<style type="text/css">
img {

max-width: 200px;
width:expression_r(this.width > 200 ? "200px" :(this.width+"px"));

max-height: 200px;
height:expression_r(this.height > 200 ? "200px" :(this.height+"px"));
}
</style>

原创粉丝点击