方法一:
复制代码代码如下:
height:auto!important;
height:580px;
min-height:580px;
把以上三行代码加到需要最小宽度的div里即可 , 原理是使用IE6本身的BUG(当块级元素内部的东西超出此块级元素的高度时 , 块级元素的高度会被撑开 , 也就是说IE6中的height属性本身就等同于min-height) 。
方法二:
复制代码代码如下:
min-height:200px;
_height:200px;
方法三:
复制代码代码如下:
#min-width{
min-width:900px;
_width:expression((document.documentElement.clientWidth||document.body.clientWidth)900?"900px":"");
line-height:200px;
background:#ccc;
}
方法四:
复制代码代码如下:
#mpage{
width:100%;
min-width:980px;
position:relative;
_width: expression(((document.compatModedocument.compatMode==’CSS1Compat’)? document.documentElement.clientWidth : document.body.clientWidth)980? ’980px’ : ’auto’);
}
推荐阅读
- 利用iRedSoft Image Resizer修改图片尺寸的操作方法
- 小米12死机屏幕无反应解决方法
- 使用VideoPad Video Editor在视频中插入文字的方法步骤
- IE6 fixed的完美解决方案
- 使用PDF24 Creator压缩PDF文件的操作方法
- IE6的双倍,3px,注释引起的文字错位等几个BUG解决方法
- 新星VCD视频格式转换器将3gp转换成MP4的方法步骤
- 多出一行字 解决在IE6下文字溢出的解决方法小结
- Bandisoft Bandicam选取区域录制电脑屏幕的操作方法
- 使用doPDF打印PDF文件的方法步骤