I'm working with clip path for the first time and i need to add a border in this shape. Anyone can explain me how to do that?
.image-center {
width: 300px;
height: 300px;
margin: 0 auto;
}
.shape {
width: 300px;
height: 300px;
-webkit-clip-path: polygon(15% 0, 70% 0, 100% 50%, 70% 100%, 15% 100%, 0 70%, 20% 50%, 0% 30%);
clip-path: polygon(15% 0, 70% 0, 100% 50%, 70% 100%, 15% 100%, 0 70%, 20% 50%, 0% 30%);
}
img {
width: 300px;
height: 300px;
}
<div class="image-center">
<div class="shape">
<img src="http://www.businessadvisorsmd.com/wp-content/uploads/2016/01/masteraccounting-1.jpg" />
</div>
</div>