To crop a large image in Webflow without stretching or distorting it, you can use CSS properties like object-fit
and crop using a container with fixed dimensions.
Overflow
to ‘Hidden’ on the Div Block to ensure the image parts outside its dimensions are not visible.Position
to ‘Relative’ (optional, but helpful if you’re absolutely positioning the image inside it).Width
to 100% (or a fixed size larger than the Div if you want zoom/crop effect).Height
to 100% and choose object-fit: cover
under the Style panel > Sizing options.object-position
to toggle the image’s crop focus (e.g., center, top, bottom).object-fit
is applied.To crop a large image in Webflow without distortion, wrap it in a Div with fixed size and Overflow Hidden, and set the image to object-fit: cover
. This preserves aspect ratio and cleanly crops the image to the defined container.