html - 绝对 div 的填充在 Internet Explorer 7 中有不同的解释

标签 html css internet-explorer-8 internet-explorer-7 absolute

在 Internet Explorer 8 及更高版本以及所有其他浏览器中,当存在负边距时,绝对 div 元素的填充不会将内容推到页面下方。

但在 Internet Explorer 7 中,填充无论如何都会将内容下推。

此代码不使用 JavaScript。

这是它在 Internet Explorer 8、Firefox 和 Chrome 中运行的屏幕截图(没有垂直溢出):

enter image description here

这是在 Internet Explorer 7 中运行的相同代码的 gif:

enter image description here

这是我的代码:

p {
  margin-top: 0;
  margin-bottom: 0;
}

* {
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
} 

html,
body {
  margin: 0;
  padding: 0;
  height: 100%;
}
#container {
  min-height: 100%;
  position: relative;
}
#header {
  background: yellow;
  height:50px;
}
#body {
  padding-bottom: 50px; /* Height of the footer */
}
#footer {
  position: absolute;
  bottom: 0;
  width: 100%;
  height: 50px;         /* Height of the footer */
  background: green;
}

#body {
  height: 100%;
  width: 100%;
  position: absolute;
  margin-top: -50px;
  padding-top: 50px;
}
#main-content-container {
  height: 100%;
}
.inset-boxshadow-and-background {
  background-color: red;
  height: 100%;
  width: 100%;
}
</style>

<!--[if lt IE 7]>
<style media="screen" type="text/css">
#container {
  height: 100%;
}
</style>
<![endif]-->
<body>

<div id="container">
  <div id="header">

  </div>

    <div class="body-parent">
      <div id="body">
        <div id="main-content-container">
          <div class="inset-boxshadow-and-background">
          <!-- Body start -->
          <p>In this demo the footer is pushed to the bottom of the screen in all standards compliant web browsers even when there is only a small amount of content on the page. This with work with IE 6 and IE 5.5 too. Non-standards compliant browsers degrade gracefully by positioning the footer under the content as per normal. Read the <a href="https://matthewjamestaylor.com/bottom-footer">full article</a> for all the details.</p>
          <!-- Body end -->
          </div>
        </div>
      </div>
    </div>
  <div id="footer">

  </div>
</div>

</body>

请不要说“Internet Explorer 7 没用”,因为我知道它很臭!

最佳答案

尝试使用以下代码:

<style type="text/css">
    p {
        margin-top: 0;
        margin-bottom: 0;
    }

    * {
        -webkit-box-sizing: border-box;
        -moz-box-sizing: border-box;
        box-sizing: border-box;
    }
    html,
    body {
        margin: 0;
        padding: 0;
        height: 100%;
    }
    /* Core styles */
    .header {
        position: absolute; /* needed for stacking */
        height: 50px;
        width: 100%;
        background-color: yellow;
    }

    .content {
        position: absolute;/* needed for stacking */
        top:50px;
        width: 100%;
        height: 100%;
        background-color:red;
    }
    .footer {
        position: absolute;/* needed for stacking */
        width: 100%;
        height: 50px;
        bottom:-50px;
        background-color:aqua;
    }
    #main-content-container {
        height: 100%;
    }

    .inset-boxshadow-and-background {
        background-color: red;
        height: 100%;
        width: 100%;
    }
</style>
<div class="header">
    <div class="header-inner"></div>
</div>
<div class="content">
    <div class="content-inner">
        <div id="body">
            <div id="main-content-container">
                <div class="inset-boxshadow-and-background">
                    <!-- Body start -->
                    <p>In this demo the footer is pushed to the bottom of the screen in all standards compliant web browsers even when there is only a small amount of content on the page. This with work with IE 6 and IE 5.5 too. Non-standards compliant browsers degrade gracefully by positioning the footer under the content as per normal. Read the <a href="https://matthewjamestaylor.com/bottom-footer">full article</a> for all the details.</p>
                    <!-- Body end -->
                </div>
            </div>
        </div>
    </div>
</div>
<div class="footer">
    <div class="footer-inner"></div>
</div>

更新:以下代码在我这边运行良好,请引用。

<style type="text/css">
    p {
        margin-top: 0;
        margin-bottom: 0;
    }

    * {
        -webkit-box-sizing: border-box;
        -moz-box-sizing: border-box;
        box-sizing: border-box;
    }

    html,
    body {
        margin: 0;
        padding: 0;
        height: 100%;
    }

    #container {
        height: 100%;
        position: relative;
        background-color:red;
    }
    #header {
        position: absolute;
        top:0;
        width:100%;
        background-color: yellow;
        height: 50px;
    }
    .body-parent {
        margin-top: 50px;
        position: absolute;
    }
    #footer {
        position: absolute;
        bottom: 0;
        width: 100%;
        height: 50px; /* Height of the footer */
        background-color: green;
    }
    #body {
        height: 100%;
        width: 100%;
        padding-bottom: 50px; 
    }

    #main-content-container {
        height: 100%;
    }

    .inset-boxshadow-and-background {
        background-color: red;
        height: 100%;
        width: 100%;
    }

</style>
<div id="container">
    <div id="header">
    </div>
    <div class="body-parent">
        <div id="body">
            <div id="main-content-container">
                <div class="inset-boxshadow-and-background">
                    <!-- Body start -->
                    <p>In this demo the footer is pushed to the bottom of the screen in all standards compliant web browsers even when there is only a small amount of content on the page. This with work with IE 6 and IE 5.5 too. Non-standards compliant browsers degrade gracefully by positioning the footer under the content as per normal. Read the <a href="https://matthewjamestaylor.com/bottom-footer">full article</a> for all the details.</p>
                    <!-- Body end -->
                </div>
            </div>
        </div>
    </div>
    <div id="footer">
    </div>
</div>

结果如下: enter image description here

关于html - 绝对 div 的填充在 Internet Explorer 7 中有不同的解释,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/52499916/

相关文章:

javascript - 使用 jQuery 水平滑动的垂直 slider

jquery - 为什么 jQuery .html() 方法不能与 IE8 中的自定义标签一起使用?

jQuery 获取图像的 HTML 作为字符串

javascript - 克拉姆当延伸

css - 子 div 在同一行上使用 css 扩展到父 div 的全宽大小

html - Bootstrap HTML 选择下拉选项在 IE 7 与 IE8 中不对齐

css - 使布局在 IE8 怪癖模式下工作

javascript - 如何通过javascript动态创建 Bootstrap 面板?

html - 如何使用curl向github API发送消息?

php - YII CListView 如何将 id 添加到 itemwrapper