国产探花免费观看_亚洲丰满少妇自慰呻吟_97日韩有码在线_资源在线日韩欧美_一区二区精品毛片,辰东完美世界有声小说,欢乐颂第一季,yy玄幻小说排行榜完本

首頁 > 開發(fā) > CSS > 正文

兼容IE6的網(wǎng)頁最小最大寬度和最小最大高度css寫法

2024-07-11 08:33:45
字體:
供稿:網(wǎng)友

最小寬度:

復制代碼代碼如下:
.min_width{
min-width:300px;
/*sets max-width for IE */
_width:expression(document.body.clientWidth < 300 ? “300px” : “auto”);
}
最大寬度

復制代碼代碼如下:.max_width{
max-width:600px;
/*sets max-width for IE */
_width:expression(document.body.clientWidth > 600 ? “600px” : “auto”);
}
最小高度

復制代碼代碼如下:.min_height{
min-height:200px;
/* sets min-height for IE */
_height:expression(this.scrollHeight < 200 ? “200px” : “auto”);
}
最大高度

復制代碼代碼如下:.max_height{
max-height:400px;
/* sets max-height for IE */
_height:expression(this.scrollHeight > 400 ? “400px” : “auto”);
}
最大最小寬度

復制代碼代碼如下:.min_and_max_width{
min-width:300px;
max-width:600px;
/* sets min-width & max-width for IE */
_width: expression(document.body.clientWidth < 300 ? “300px” ???? document.body.clientWidth > 600 ? “600px” : “auto”));
}
最大最小高度

復制代碼代碼如下:.min_and_max_height{
min-height:200px;
max-height:400px;
/* sets min-height & max-height for IE */
_height: expression(this.scrollHeight < 200 ? “200px” ???? this.scrollHeight > 400 ? “400px” : “auto”));
}

發(fā)表評論 共有條評論
用戶名: 密碼:
驗證碼: 匿名發(fā)表
主站蜘蛛池模板: 普安县| 苏尼特左旗| 安庆市| 锡林郭勒盟| 大新县| 台州市| 金阳县| 乳山市| 宁波市| 沈阳市| 神农架林区| 盐池县| 西城区| 塔河县| 宜昌市| 甘孜县| 宝鸡市| 绿春县| 博罗县| 沙雅县| 台南县| 卓尼县| 汉寿县| 新野县| 白山市| 达拉特旗| 循化| 梓潼县| 宁陵县| 阿拉尔市| 渝中区| 肥西县| 芦山县| 双桥区| 名山县| 峡江县| 繁峙县| 从江县| 新疆| 偃师市| 武义县|