gpt4 book ai didi

html - CSS 无法在 Internet Explorer 中正确显示

转载 作者:太空宇宙 更新时间:2023-11-04 00:15:11 25 4
gpt4 key购买 nike

基本上,我打算创建一个从屏幕顶部到底部的进度条。分为三部分,顶部是一种颜色,中间是另一种颜色,底部是另一种颜色。

不幸的是,此代码仅适用于 FF 和 Chrome,但在 IE(所有版本)中显示不正确。目前仅在 IE 中显示顶部颜色。

代码:

html, body 
{
height: 100%;
margin: 10px;overflow: hidden;
}

#head
{
height: 80px;
background-color:black;
}

#content
{
min-height: 100%;
height: 100%;
margin: 0 auto; /*Allow for footer height*/
vertical-align:bottom;
}

#prgsBar
{
margin: 0 auto -80px; /*Allow for footer height*/
background-color:gray;
}

#footer, #push
{
height: 100px; /*Push must be same height as Footer */
}

HTML:

 <div id='content' style='background-color:red'>    
<div id='head'>
<h5>Hello</h5>
</div>
<div id='prgsBar' style='height: 29%;'/></div>

最佳答案

您的#prgsBar 是一个自闭标签,不应该是。

更改 <div id='prgsBar' style='height: 29%;'/></div><div id='prgsBar' style='height: 29%;'></div>

关于html - CSS 无法在 Internet Explorer 中正确显示,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/11580550/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com