I have a situation where I'm using a third-party iframe to display specific content. The iframe is enclosed within a div container that has border-radius
and overflow: hidden
properties applied. Strangely, the content inside the iframe doesn't seem to conform to these styles.
.iframe-container {
border: 8px solid red;
border-radius: 40px;
overflow: hidden;
}
<div class="iframe-container">
<iframe... />
</div>
https://i.sstatic.net/Vvy2a.png
Does anyone have any insights or suggestions on how to resolve this issue?
UPDATE It appears that this problem is specific to Safari.