带有 css 的样式标签栏

styling tabbar with css

我想要一个像下图这样的标签,但我不知道如何制作它。

将标签制作成png图片。这是我做的非常快的一个。我在顶部有一个边框,在底部没有边框,所以它会覆盖现有的边框,使其在向上弯曲时出现

然后将它与一些样式结合起来以获得您的结果

*:focus {
  outline: none;
}

.content {
  box-sizing: border-box;
  background-color: #F7F7F7;
  border-top-left-radius: 20px;
  border-top-right-radius: 20px;
  
  border: 1px solid #d5d1d1;
}

.tabs {
  margin-bottom: -1px;
  background-color: white;
  border: 1px solid #F4C949;
  border-radius: 20px;
  margin: -1px;
  padding: 0px 20px;
  padding-top: 8px;
  text-align: right;
}

.tab {
  position: relative;
  z-index: 2;
  display: inline-block;
  width: 175px;
  height: 30px;
  margin-bottom: -6px;
  padding-top: 8px;
  text-align: center;
}

.tab:focus {
  background: url(https://i.stack.imgur.com/45ecy.png);
  background-size: contain;
  background-position: top;
  background-repeat: no-repeat;
}

.tab-content {
  height: 175px;
}
<div class="content">
  <div class="tabs">
    <div class="tab tab-active" tabindex="0">
      Tab 1
    </div>
    <div class="tab" tabindex="0">
      Tab 2
    </div>
  </div>
  <div class="tab-content">
    Click tab to get the effect
  </div>
</div>