iOS sometimes ignores border-radius
on a parent div
when applied to an img
inside it. Here’s how to fix it in Webflow:
border-radius
Directly to the Imagediv
.border-radius
as the parent container.overflow: hidden
on the parent div
to ensure clipping.object-fit
for Responsive Imagesimg
has width: 100%
and height: 100%
.object-fit: cover
to maintain aspect ratio.overflow: hidden
to the parent div
.img
tag.div
's background as the image (via Background
settings).border-radius
to the div
.If border-radius
isn't working correctly on iOS, apply it directly to the img
or use a background image. Also, ensure overflow: hidden
on the parent to enforce clipping.