首页 技术 正文
技术 2022年11月23日
0 收藏 642 点赞 3,322 浏览 748 个字

  有时候利用css比较方便控制网页html中img图片的显示大小。这样也省得自己一个一个去定义。

img,a img{
border:;
margin:;
padding:;
max-width:600px;
width:expression(this.width>600?"600px":this.width);
max-height:600px;
height:expression(this.height>600?"600px":this.height);
}

  这样当我们的图片高度 宽度 超过600时 就默认把 高 宽 限定在 600

img,a img{
border:0;
margin:0;
padding:0;
max-width:650px;
width: expression(this.width > 650 && this.width > this.height ? 650px : 'auto';);
max-height:1650px;
height: expresion(this.height > 1650 ? 1650px : 'auto';);
}

  某些情况使用上面的css 访问页面是 图片会变成小图,如出现问题 可以按照下面替换下

  width:expression(this.width>600?"600px":this.width); 改成
  width:expression(this.width>600?"600px":auto);
  height:expression(this.height>600?"600px":this.height);
  height:expression(this.height>600?"600px":auto);

原文网址:http://www.itokit.com/2011/0918/69478.html

相关推荐
python开发_常用的python模块及安装方法
adodb:我们领导推荐的数据库连接组件bsddb3:BerkeleyDB的连接组件Cheetah-1.0:我比较喜欢这个版本的cheeta…
日期:2022-11-24 点赞:878 阅读:8,991
Educational Codeforces Round 11 C. Hard Process 二分
C. Hard Process题目连接:http://www.codeforces.com/contest/660/problem/CDes…
日期:2022-11-24 点赞:807 阅读:5,506
下载Ubuntn 17.04 内核源代码
zengkefu@server1:/usr/src$ uname -aLinux server1 4.10.0-19-generic #21…
日期:2022-11-24 点赞:569 阅读:6,349
可用Active Desktop Calendar V7.86 注册码序列号
可用Active Desktop Calendar V7.86 注册码序列号Name: www.greendown.cn Code: &nb…
日期:2022-11-24 点赞:733 阅读:6,134
Android调用系统相机、自定义相机、处理大图片
Android调用系统相机和自定义相机实例本博文主要是介绍了android上使用相机进行拍照并显示的两种方式,并且由于涉及到要把拍到的照片显…
日期:2022-11-24 点赞:512 阅读:7,766
Struts的使用
一、Struts2的获取  Struts的官方网站为:http://struts.apache.org/  下载完Struts2的jar包,…
日期:2022-11-24 点赞:671 阅读:4,844