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

Posted

tags:

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

This snippet uses html>body instead of * html. Works in all modern-browsers, degrades to just height for older browsers.
  1. #minHeightItem
  2. {
  3. height: 100px; /* this is the height that IE6 and other older browsers will use */
  4. }
  5.  
  6. /* "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 */
  7. html>body #minHeightItem
  8. {
  9. height: auto; /* reset the height for compliant browsers */
  10. min-height: 100px;
  11. }

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

兼容IE6的最小高度代码实例

CSS 所有浏览器的最小高度

所有浏览器的最小高度

所有浏览器的最小高度

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

所有浏览器中的最小高度