本文和大家重點討論一下IE6不支持min-height的解決辦法,這裡主要包括兩種解決方案,相信本文介紹一定會讓你有所收獲。
IE6不支持min-height的解決辦法
最小高度min-height是很有用的,但IE6卻不支持。真煩人。有沒有辦法呢?
第一種方法:我們可以利用IE6不識別!important來實現:
- height:auto!important;
- height:500px;
- min-height:500px;
這3句代碼就讓IE6也有了高度min-height的效果,大家可以把下面的代碼復制保存成網頁文件看看效果。
Html代碼
- <!DOCTYPE html PUBLIC "-//W3C//DTD XHtml 1.0 Transitional//EN"
- "http://www.w3.org/TR/xhtml1/DTD/xHtml1-transitional.dtd">
- <Html XMLns="http://www.w3.org/1999/xHtml">
- <head> <meta http-equiv="Content-Type" content="text/Html; charset=gb2312" />
- <title>殘缺 完美 生活</title>
- </head>
- <style type="text/CSS"> *{ margin:0; padding:0; }
- body{ font-family:Arial, Helvetica,宋體,sans-serif; font-size:12px;
- text-align:center; background-color:#D4D5CC; }
- #wrapper{ height:auto!important;
- height:500px; min-height:500px;
- width:760px; background-color:#e5e5e5; border:1px solid #fff;
- text-align:left; line-height:150%; padding:20px; margin:10px auto; }
- </style> <body> <div id="wrapper">
- The Furthest Distance In The World <br /> 世界上最遙遠的距離 <br />
- Tagore泰戈爾 <br /> The furthest distance in the world <br />
- 世界上最遙遠的距離 <br /> Is not between life and death <br />
- 不是生與死 <br /> But when I stand in front of you <br />
- 而是 我就站在你面前 <br /> Yet you don't know that I love you <br />
- 你卻不知道我愛你 <br />
- </div>
- </body>
- </Html>
[Ctrl+A全部選擇提示:你可先修改部分代碼,再按運行]
◆還有一種方法:在IE6IE5IE7FF測試竟然正常,而且能通過W3C檢測的,方法如下:
Html代碼
- #test { min-height:100px; background:#BBB; _height:100px; overflow: visible; }
[Ctrl+A全部選擇提示:你可先修改部分代碼,再按運行]
說明一下上面這段CSS的意思。
min-height:100px;這一句在IE7和FF已經可以正常顯示了。。
_height:100px這一句在ie6,IE5測試顯示正常。但不能過W3C驗證:L
overflow:visible;這一句為了注明#test當內容超過100px時就自動延長。
注意:你必須保證#test以外的都要是overflow:visible。否則還是不會顯示超出。
【編輯推薦】