I create this div <div class="arrow"></div> and then drown arrow with clip path using the below CSS code
.arrow {
width: 40px;
height: 121px;
background: #fff;
-webkit-clip-path: polygon(0% 0%, 75% 0%, 100% 50%, 75% 100%, 0% 100%);
clip-path: polygon(0% 0%, 75% 0%, 100% 50%, 75% 100%, 0% 100%);
position: absolute;
right: -41px;
z-index: 1;
top: -1px;
}
but now I face a problem , I didn't need this clip path to fill with background color I just want it to have a border I try to give it border:1px solid #000 but it doesn't work