gpt4 book ai didi

html - 圆 Angular 边框

转载 作者:行者123 更新时间:2023-11-28 01:46:12 24 4
gpt4 key购买 nike

我的标题导航中有一个标签,上面有一个边框。该选项卡具有圆 Angular 。我希望选项卡上的边框与页眉上的边框齐平。但是圆 Angular 似乎会产生锥形效果。我该如何缓解这种情况?我的 fiddle :fiddle

CSS:

.gizmo {
position:fixed;
top:0;
width:100%;
height:40px;
background-color:#4c4c4c;
border-bottom:1px solid red;
}
.tab-shit {
position:absolute;
width:40px;
right:100px;
height:50px;
top:7px;
background-color:#4c4c4c;
border-radius:0 0 20px 20px;
border-bottom:1px solid red;
}

html:

<div class="gizmo">
<div class="tab-shit"></div>
</div>

最佳答案

试试这个:

.tab-shit {
height:20px;
border:5px solid red;
border-top: none;
bottom:-25px; /* -25 = - (height+border) */
border-radius:0 0 25px 25px; /* 25 = height+border */
}

Demo

如果您将 border-bottom 添加到 header ,效果会很好:Demo

关于html - 圆 Angular 边框,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/22517181/

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