gpt4 book ai didi

html - CSS 位置 : relative and absolute issue

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

你可以在Design Prototype上看到我的布局原型(prototype)。

我有两个:Header 和 Container。头部区域必须放置在容器上方。Header 有两个子元素:Logo DIV 和 Logo-Title DIV。他们的职位被评为父级 [Header DIV]。因此,我将标题的位置设置为相对位置,将子项( Logo 和 Logo 标题)设置为绝对位置。

但是之后Container并没有放在header area下面!当我从 Logo DIV 和 Logo-TITLE DIV 中删除绝对位置时,容器就可以了!但我可以对齐父项(页眉)中的 Logo 和 Logo 标题。

为什么?容器不是标题的 child !怎么解决?

谢谢。

Design Prototype

@charset "utf-8";

body{
margin: 0 auto;
width: 980px;
background-color: #f1f1f1;
}

#header{
position: relative;
background-color: yellow;
height: 154px;
}

#logo{
position: absolute;
background-color: green;
width: 123px;
height: 146px;
margin-top: 4px;
margin-left: 4px;
}

#logo-title {
position: absolute;
color: darkblue;
font-size: 16pt;
bottom: 0;
margin-left: 60px;
}

#container {
background-color: white;
height: 600px;
width: 980px;
}
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN"
"http://www.w3.org/TR/html4/loose.dtd">
<html>
<head>
<title>Title</title>
<link href="style.css" rel="stylesheet"/>
</head>
<body>
<div id="wrapper">
<div id="header">
<div id="logo"/>
<div id="logo-title">Logo-Title</div>
</div>
<div id="container"></div>
</div>
</body>
</html>

最佳答案

logo 上使用的单标签闭包在 div 元素上不起作用,所以我将其更改为这样

<div id="logo"></div>

将您的 container 临时着色为 red,这样就可以看到它现在呈现正确了

@charset "utf-8";

body{
margin: 0 auto;
width: 980px;
background-color: #f1f1f1;
}

#header{
position: relative;
background-color: yellow;
height: 154px;
}

#logo{
position: absolute;
background-color: green;
width: 123px;
height: 146px;
margin-top: 4px;
margin-left: 4px;
}

#logo-title {
position: absolute;
color: darkblue;
font-size: 16pt;
bottom: 0;
margin-left: 60px;
}

#container {
background-color: red;
height: 600px;
width: 980px;
}
<div id="wrapper">
<div id="header">
<div id="logo"></div>
<div id="logo-title">Logo-Title</div>
</div>
<div id="container"></div>
</div>

关于html - CSS 位置 : relative and absolute issue,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/37895486/

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