我們?cè)趯慍SS的時(shí)候,常常會(huì)遇到讓一個(gè)圖片或一個(gè)布局不能超出設(shè)定一定高度范圍值,有時(shí)也需要設(shè)置一個(gè)小高度值,以達(dá)到對(duì)齊等樣式。接下來(lái)由DIVCSS5為大家總結(jié)的如何解決IE6不支持max-height和不支持max-height的方法;IE6 max-height、min-height不支持解決方法。
目錄
IE6支持max-height解決方法 IE6支持min-height解決方法 IE6支持max-height又支持min-height方法
1、IE6支持max-height解決方法 -
IE6支持大高度解決CSS代碼:
.yangshi{max-height:1000px;_height:expression((document.documentElement.clientHeight||document.body.clientHeight)<1000?"1000px":"");overflow:hidden;}
說(shuō)明:max-height:1000px; 這個(gè)是IE6以上級(jí)其它品牌瀏覽器支持大范圍高度。而_height:expression((document.documentElement.clientHeight||document.body.clientHeight)<1000?"1000px":"");overflow:hidden; 則是讓IE6支持max-height替代CSS代碼,但效果和其它版本瀏覽器相同效果。
讓所有瀏覽器都支持max-height的CSS樣式代碼,完整:
max-height:1000px;_height:expression((document.documentElement.clientHeight||document.body.clientHeight)<1000?"1000px":""); overflow:hidden;這里的1000和1000px是你需要的數(shù)值,注意3個(gè)數(shù)值的相同。
讓IE6支持大高度max-height的時(shí)候別忘記加上overflow:hidden;
2、IE6支持min-height解決方法 -
IE6支持小高度解決CSS代碼:
.yangshi{min-height:1000px;_height:expression((document.documentElement.clientHeight||document.body.clientHeight)>1000?"1000px":"");}
說(shuō)明:min-height:1000px; 這個(gè)是IE6以上級(jí)其它品牌瀏覽器支持小范圍高度。而_height:expression((document.documentElement.clientHeight||document.body.clientHeight)>1000?"1000px":""); 則是讓IE6支持min-height替代CSS代碼,但效果和其它版本瀏覽器相同效果。
讓所有瀏覽器都支持min-height的CSS樣式代碼,完整:
min-height:1000px;_height:expression((document.documentElement.clientHeight||document.body.clientHeight)>1000?"1000px":""); 這里的1000和1000px是你需要的數(shù)值,注意3個(gè)數(shù)值的相同。
3、IE6支持max-height又支持min-height方法 -
讓所有瀏覽器包括IE6即支持大高度又支持小高度。
.yangshi{Max-Height:620px;Min-Height:40px;_height:expression(this.scrollHeight > 620 ? "620px" : (this.scrollHeight < 40 ? "40px" : "auto"));}
IE6支持Max-Height和支持Min-Height CSS代碼
_height:expression(this.scrollHeight > 620 ? "620px" : (this.scrollHeight < 40 ? "40px" : "auto"));
說(shuō)明:以上代碼作用是讓對(duì)象的小高度為40px,大高度為620px的CSS樣式屬性