CSS for custom edges on a wrap

I am trying to apply some CSS to get an affect on the edge of a wrap when a background is applied

i am trying to achieve the following effect on all 4 corners of a wrap

I have tried applying the following CSS in the "custom" section of the wrap but nothing gets applied. Anyone able to offer some advice?


/* Apply equal rounded corners to all four corners */
.corner-wrap-class {
    border-radius: 20px;  /* Adjust the value as needed */
    display: block;  /* Ensure the element is displayed correctly */
}

Comments

Sign In or Register to comment.