I was wondering if it's possible to make a complex shape with a div similar to the following:
It's basically a rounded square with the corners pinched inwards. The goal is to use a background image to fill it. I could accomplish it with a clip-mask with the following SVG pathing:
<path id="Path_1386" data-name="Path 1386" d="M20.148,599.906,455.922,482.262a15.989,15.989,0,0,0,11.817-15.433V139.242a15.986,15.986,0,0,0-11.632-15.381L20.335.613A15.984,15.984,0,0,0,0,15.994V584.475a15.983,15.983,0,0,0,20.148,15.431" transform="translate(0 0)" />
But it's a bit awkward to work with it in CSS for responsive resizing.
