CSS 所有浏览器的简单最小高度

Posted

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了CSS 所有浏览器的简单最小高度相关的知识,希望对你有一定的参考价值。

#minHeightItem
{
	height: 100px;	/* this is the height that IE6 and other older browsers will use */
}

/* "html>body" is preferred over other methods because it is valid CSS, it doesn't have problems with specificity that other methods have, and it is forwards compatible */
html>body #minHeightItem
{
	height: auto;	/* reset the height for compliant browsers */
	min-height: 100px;
}

以上是关于CSS 所有浏览器的简单最小高度的主要内容,如果未能解决你的问题,请参考以下文章

CSS IE(和所有其他浏览器)的最小高度

所有浏览器的简单最小高度

CSS 跨浏览器CSS最小高度支持

CSS默认下固定高度,自动适应

css 跨浏览器最小高度

css 浏览器最小高度