diff --git a/docs/api-reference/next/future/image.md b/docs/api-reference/next/future/image.md index 1d694b94a1dde..6c5551c025558 100644 --- a/docs/api-reference/next/future/image.md +++ b/docs/api-reference/next/future/image.md @@ -39,6 +39,13 @@ Compared to `next/image`, the new `next/future/image` component has the followin - Note: there is no `fill` mode so `width` & `height` props are required - Note: the [`onError`](#onerror) prop might behave differently +The default layout for `next/image` was `intrinsic`, which would shrink the `width` if the image was larger than it's container. Since no styles are automatically applied to `next/future/image`, you'll need to add the following CSS to achieve the same behavior: + +```css +max-width: 100%; +height: auto; +``` + ## Required Props The `` component requires the following properties.