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

首頁 > 開發 > CSS > 正文

兼容IE6的網頁最小最大寬度和最小最大高度css寫法

2024-07-11 08:31:17
字體:
來源:轉載
供稿:網友
最小寬度:

復制代碼
代碼如下:
.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"));
}
發表評論 共有條評論
用戶名: 密碼:
驗證碼: 匿名發表
主站蜘蛛池模板: 靖宇县| 安阳县| 沙雅县| 如皋市| 安吉县| 胶州市| 沙河市| 蕉岭县| 黄山市| 驻马店市| 长垣县| 曲水县| 寻甸| 榆树市| 行唐县| 溧阳市| 恩施市| 南城县| 延安市| 巴青县| 灌云县| 巩留县| 垫江县| 文成县| 伊金霍洛旗| 隆回县| 北票市| 巴中市| 凤庆县| 盐亭县| 通海县| 荆州市| 青田县| 方正县| 南澳县| 洛浦县| 新干县| 白河县| 东台市| 酒泉市| 定边县|