最新下载
热门教程
- 1
- 2
- 3
- 4
- 5
- 6
- 7
- 8
- 9
- 10
css 按比例缩小或者放大代码
时间:2022-06-25 10:14:08 编辑:袖梨 来源:一聚教程网
如:
| 代码如下 | 复制代码 |
| img{max-width:100px;max-height:100px;} img{min-width:100px;min-height:100px;} |
|
对于IE6及其以下版本的浏览器,则可以利用其支持的expression属性,在css code中嵌入javascript code来实现图片的缩放,
如下:
| 代码如下 | 复制代码 |
| .thumbImage {max-width: 100px;max-height: 100px;} /* for Firefox & IE7 */ * html .thumbImage { /* for IE6 */ width: expression(this.width > 100 && this.width > this.height ? 100 : auto); height: expression(this.height > 100 ? 100 : auto); } |
|
相关文章
- 烈火勇者传奇攻略汇总—新手攻略一览 09-09
- 明日方舟终末地地图如何探索 地图探索攻略 09-09
- 《明日方舟 终末地》萨卡兹塞西强度说明 09-09
- Git实现方式删除远程分支+本地分支实用指南 09-09
- 明日方舟终末地墓地效果说明 09-09
- Github库镜像到本地私有Gitlab服务器实现方式过程实用指南 09-09