gpt4 book ai didi

html - 头部容器的高度是动态的

转载 作者:行者123 更新时间:2023-11-28 02:15:47 25 4
gpt4 key购买 nike

<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
</head>
<body>
<div class = "wrapper">
<header>
<div class = "CentralHeader">
<div class = "LinkBar" id = "HeaderBar" >All</div>
<div class = "SampleMenu">
<ul>
<li><a href = "#Movies">Movies</a></li>
<li><a href = "#Events">Events</a></li>
<li><a href = "#Sports">Sports</a></li>
<li><a href = "#Plays">Plays</a></li>
</ul>
</div>
</div>
</header>
<main>
<div class = "main">
<div class = "TopMovies" >
</div>
<div class = "JustForYou">
</div>
</div>
</main>
</div>
</body>
<style type="text/css">
.wrapper{
height: 100vh;
display: flex;
flex-direction:column;
}
header{
height: 400px;
border-bottom: 4px solid beige;
}
main{
flex:1
}

.LinkBar {
cursor: pointer;
width: 140px;
height: 37px;
border: 1px solid #c02c3a;
margin-top: 50px;
margin-left: 300px;
background-color: #c02c3a;
text-align: center;
padding-top: 9px;
color: white;
display: inline-block;
}
div.SampleMenu ul {
list-style-type: none;
width: 140px;
background-color: Grey;
margin-left: 300.5px;
padding: 0;
margin-top: 0px;
display: none;
border-top: 2px solid #fff;
}
div.SampleMenu ul li {
color: White;
padding: 0;
}
div.SampleMenu ul li a {
color: white;
display: block;
padding: 10px;
font-size: large;
text-align: center;
}
#HeaderBar:hover~.SampleMenu ul,
.SampleMenu ul:hover {
display: block;
}
.main{
width:auto;
height: 500px;
border:2px groove red;
}
</style>
</body>
</html>

在上面的片段中,“header”的容器空间在 LinkBar 悬停时发生了变化。悬停时,下拉列表显示标题的高度,但在正常状态下,标题高度减小。当 CSS 属性因为 wrapper 标签被删除,功能,即标题的容器空间可用,如 CSS (400px) 中所述。是什么导致标题的高度是动态的?

最佳答案

如果想让菜单和表头重叠,需要加上“position: absolute;”到菜单(div.SampleMenu ul 在你的情况下具体)和“position:relative;”到标题。

您应该阅读更多有关定位方式以及它们如何相互作用的信息。

关于html - 头部容器的高度是动态的,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/48484623/

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