擁有 hack 的網誌

Mininum Height DIV

以前讀過 GreyWyvernCSS min-height hack,總覺得有點麻煩,因為在 DIV 裡植入另一用 Float 性質的 DIV 來控制最小高度,對於分離 Style 和 Data 的 XHTML 來說似乎違反了其原則。

最近找到 Dustin Diaz 的另一隻運用 CSS 的作法來達到相同的效果,雖不支援 Internet Explorer 5.5 之前的版本,但似乎簡單好用的許多。以下是範例:

div.content {
	min-height:500px;
	height:auto !important;
	height:500px;
}