1.遮挡盒子本身一部分边框

.parentBox {
position: relative;
&:after {
position: absolute;
top: -20px;
right: 10px;
border: solid transparent;
content: ' ';
height: 0;
width: 0;
border-width: 10px;
border-bottom-color: #f5dce4;
}
&:before{
position: absolute;
top: -17px;
right: 11px;
border: solid transparent;
content: ' ';
height: 0;
width: 0;
border-width: 9px;
border-bottom-color: #fff;
z-index: 9;
}
}
2.css三角形

.parentBox {
position: relative;
&:after {
position: absolute;
top: -20px;
right: 0;
content: ' ';
border: 10px solid transparent;
border-bottom: 10px solid #ddd;
}
}