gpt4 book ai didi

css - 如何创建 flex 的导航栏?

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

我正在尝试创建这样的导航栏。但我不能完全像这样创建。请帮助我。

<div class="container-fluid">
<div class="row">
<div class="col-4 text-right">
<i class="fa fa-bars"></i>
</div>
<div class="col-4 round text-center">
<img src="images/sss-logo.png" class="sss-logo">
</div>
<div class="col-4 text-left">

</div>
</div>
</div>

我是这样做的:

enter image description here

我需要这样创建:

enter image description here

最佳答案

这是一个使用drop-shadow 滤镜和渐变的想法:

.header {
height:50px;
padding-bottom:50px;
background:
linear-gradient(darkblue,darkblue) right calc(100% - 33px)/calc(50% - 43px) 4px,
linear-gradient(darkblue,darkblue) left calc(100% - 33px)/calc(50% - 43px) 4px,
radial-gradient(circle at 50% -20px, transparent 64%,darkblue 66%,darkblue calc(66% + 2px),transparent calc(66% + 3px)) bottom center/100px 35px;
background-repeat:no-repeat;
filter:drop-shadow(0 3px 4px #000);
}


body {
margin:0;
background:pink;
}
<div class="header">

</div>

关于css - 如何创建 flex 的导航栏?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/52183269/

25 4 0