gpt4 book ai didi

html - 当我添加位置 : absolute to my navbar, 时,justify-content: space-between 停止工作

转载 作者:太空宇宙 更新时间:2023-11-04 09:18:18 26 4
gpt4 key购买 nike

我正在尝试使用 float 在其顶部的导航栏的标题图像。

how it looks

也就是用css和html作为

<div class="header-container">

<!-- START HEADER IMAGE -->
<section class="header-image">
<img src="./img/cntower.png">
</section>

<!-- END HEADER IMAGE -->

<!-- TOP LEVEL NAVIGATION -->
<div class="navbar">
<div>
<p>
<strong>GTA Wholesale</strong>
</p>
</div>

<div>
<p><strong>All</strong></p>
<p><a>Published</a></p>
<p><a>Drafts</a></p>
<p><a>Deleted</a></p>
<p><a>New</a></p>
</div>
</div>

<!-- END TOP LEVEL NAVIGATION -->


</div>

CSS:

img {
max-width 100%;
}

.header-container {
display: flex;
flex-direction: column;
position: relative;
}

.navbar {
position: absolute;
display: flex;
justify-content: space-between;
top: 0;
}

.header-image {
display: flex;
}

.header-image img {
max-width: 100%;
}

在我的导航栏类中,如果我删除 position: absolute 它不会出现在我的图像之上,但是当存在 position absolute 时,space-between 属性不适用。我该如何解决这个问题?

最佳答案

您可以保留absolute 参数并将left: 0right: 0 添加到您的navbar 类。

示例:https://jsfiddle.net/cg4pwod8/

关于html - 当我添加位置 : absolute to my navbar, 时,justify-content: space-between 停止工作,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/41639982/

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