.a { clip-path: polygon(10% 0, 100% 0%, 100% 100%, 10% 100%,10% 60%, 0% 50%, 10% 40%); }
.a { position: relative; width: 500px; height: 500px; background:url("https://cdn.pixabay.com/photo/2020/02/16/07/55/thailand-4852830_960_720.jpg"); border-radius: 15px;
<div class="a"></div>
I am faced with a challenge in creating 4 borders instead of just 2. Despite the limitation of clip-path not being supported in IE9, what alternative methods can I use to achieve the desired look?