I have a clipped box, that adds a diagonal line does the end of the box. I would like to add a border to it, but the border is also clipped.
Can I added a border to the clipped area using only CSS/html? So that the white has a black border before it meets the yellow?
.yellowclippedbox {
background-color: #F1BE3E;
color: #880000;
clip-path: polygon(20% 0, 100% 0%, 100% 100%, 0% 100%);
}