<style>
.pills {
display: flex;
gap: 5px;
font: 13px sans-serif;
--height: 24px;
--foreground: #ddd;
--background: #fff;
}
.pills > div {
background: var(--foreground);
position: relative;
padding: 0 calc(var(--height) / 2) 0 var(--height);
height: var(--height);
display: flex;
align-items: center;
text-align: center;
}
.pills > div:first-child {
border-top-left-radius: 5px;
border-bottom-left-radius: 5px;
padding-left: calc(var(--height) * (2 / 3));
}
.pills > div:not(:first-child):before,
.pills > div:after {
content: "";
border-top: calc(var(--height) / 2) solid transparent;
border-bottom: calc(var(--height) / 2) solid transparent;
position: absolute;
top: 0;
}
.pills > div:before {
border-left: calc(var(--height) / 2) solid var(--background);
left: 0;
}
.pills > div:after {
border-left: calc(var(--height) / 2) solid var(--foreground);
right: calc(var(--height) / 2 * -1);
z-index: 1;
}
</style>