Is there a way to achieve this effect with a sketch?
Note: I would like to add hover animation to the borders if possible.
I attempted to do it using the following code:
clip-path: polygon(0 0, 100% 0, 92% 86%, 6% 100%);
However, the shapes created by the code extend beyond the boundaries of the div box.
You can see my attempt here:
I considered using SVG, but since the menu content is dynamic and the text might change, it may not be suitable. Any ideas on how to achieve this effect are welcome!
Thank you!