I need to add a border color to a css shape but i don't know how to do that.
I already try with border
or border-width
but doesn't work.
This is my code:
.shape
{
width: 400px;
height: 40px;
background-color: green;
-webkit-clip-path: polygon(5% 0, 100% 0, 100% 100%, 0 100%, 0 100%);
clip-path: polygon(5% 0, 100% 0, 100% 100%, 0 100%, 0 100%);
}
<div class="shape"></div>
Thank you