如图:
.div {
position: absolute;
height: 40px;
line-height: 40px;
padding: 0 20px;
border: 1px solid red;
box-sizing: border-box;
}
.active:after {
content: "";
position: absolute;
top: 0;
right: 0;
border-top: 13px solid red;
border-left: 15px solid transparent;
}
.active:before {
content: '';
position: absolute;
width: 5px;
height: 2px;
background: transparent;
top: 2px;
right: 0px;
border: 1px solid white;
border-top: none;
border-right: none;
-webkit-transform: rotate(-35deg);
-ms-transform: rotate(-35deg);
transform: rotate(-35deg);
z-index: 9;
}
<div class="div active">测试</div>