高度(即屏幕的其余部分) +----------6ren">
gpt4 book ai didi

html - 在 "〒"中显示 div

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

我需要显示页面的 main 部分以覆盖没有标题的屏幕其余部分。

LR 部分应该是页面宽度的 50%(可能有填充),也是 main 的 100% > 高度(即屏幕的其余部分)

+-----------------------+
| header |
+-----------------------+
| | |
| L | R | } main
| | |
+-----------------------+
| footer |
+-----------------------+

这是我的代码 jsfiddle :

html, body {
height: 100%;
min-height: 100%;
margin: 0;
padding: 0;
}
header {
background-color: orange;
height: 50px;
width: 100%;
}
main {
background-color: green;
height: 100%;
margin:0;
padding: 10px;
/* changeable */
box-sizing:border-box;
background-clip: content-box;
}

main div {
padding: 10px;
height: 100%;
background-clip: inherit;
/* changeable */
width:30%; /* to set=50% */
float: left;
}
main .left {
background-color: yellow;
}
main .right {
background-color: red;
}
<header>This is the header content.</header>
<main>
<div class="left">50% width, 100% main height left</div>
<div class="right">50% width, 100% main height right</div>
</main>
<footer>This is the footer content.</footer>

附言。
我需要兼容“IE9+”(所以flexbox不兼容)

第一个页面加载的结果应该如下图所示:

enter image description here

最佳答案

由于header的高度已知,可以使用绝对定位

header, main, footer {
position: absolute;
left: 0;
right: 0;
}
header {
top: 0;
height: 50px;
background-color: orange;
}
main {
top: 50px;
bottom: 0;
}
.left, .right {
position: absolute;
top: 0;
bottom: 0;
width: 50%;
}
.left {
left: 0;
background-color: yellow;
}
.right {
right: 0;
background-color: red;
}
footer {
top: 100%;
}
<header>This is the header content.</header>
<main>
<div class="left">50% width, 100% main height left</div>
<div class="right">50% width, 100% main height right</div>
</main>
<footer>This is the footer content.</footer>

关于html - 在 "〒"中显示 div,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/32315639/

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