gpt4 book ai didi

css - 如何根据兄弟 DIV 和容器扩展 DIV 元素

转载 作者:行者123 更新时间:2023-11-28 12:38:16 25 4
gpt4 key购买 nike

我正在尝试做一些非常简单的事情,但我已经有 2 天无法完成了。

我有这个简单的 HTML 页面

<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<meta http-equiv="content-type" content="text/html; charset=utf-8" />
<title></title>
<style>
html, body {
margin:0;
padding:0;
height:100%;
}
.container
{
position:relative;
height: 100%;
overflow: hidden;
}
.header
{
height: 180px;
width: 100%;
background-color: #ccc;
}
.content
{
height:100%;
width: 100%;
background-color: #00f;
}
.footer
{
height: 72px;
position:absolute;
bottom:0;
width:100%;
}
</style>
</head>
<body>
<div class="container">
<div class="header">Some header</div>
<div class="content">Some content...</div>
<div class="footer">Some footer</div>
</div>
</body>
</html>

如您所见,我只想将页脚放在屏幕底部。问题是中间的 div 扩展到甚至占据页脚空间。当我在 .content 中删除 height: 100% 时,中间的 div 不会展开。

我听了很多建议,甚至是这个论坛的建议,但都没有成功。

任何帮助将不胜感激,

谢谢海梅

最佳答案

看看这个jsFiddle看看它是否接近您的需要。

我将您的 .content 类更改为:

.content {
width: 100%;
background-color: #00f;
position: absolute;
top: 180px; /*change according to .header height*/
bottom: 72px; /*change according to .footer height*/
}

关于css - 如何根据兄弟 DIV 和容器扩展 DIV 元素,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/17859591/

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