A good-looking CSS-only chip
.chipW {
background: #ddd;
padding: 50px;
}
.chip {
display: inline;
border-radius: 1em 0 0 1em;
margin-right: 32px;
padding: 0.2em 0.2em 0.2em 0.6em;
height: 32px;
background: white;
position: relative;
}
.chip::before {
content: "";
display: block;
position: absolute;
right: -16px;
top: 0;
width: 16px;
height: 32px;
border-top: 17px solid white;
border-right: 12px solid transparent;
}
.chip::after {
content: "";
display: block;
position: absolute;
right: -16px;
bottom: 0;
width: 16px;
height: 32px;
border-bottom: 17px solid white;