CSS 的 min-height

之前需要使用各種奇淫技巧的 min-height 的 hack ,在今天看到「Min-Height Fast Hack」這篇文章,有快速解決的方法(不過好像是 2005 年的文章了)。

在 IE 不支援 min-height 的情況下,同樣的方法在 firefox 下使用很輕鬆,為了讓萬惡的 IE 支援該方法,可以使用如下的技 巧:

  1. selector {
  2.   min-height:500px;
  3.   height:auto !important;
  4.   height:500px;
  5. }

快速方便瞬間解決!

 

google adsense