文档:
指定高度,宽度自适应:
<div className="w-[600px] h-[300px] bg-rose-950">
<Image alt="test" src={"/2x3.png"} width={395} height={265}
style={{
width: 'auto',
height: '100%',
// objectFit: 'cover', 不希望拉伸图片而是裁剪
}}
/>
</div>
指定宽度,高度自适应
<div className="w-[200px] h-[255px] bg-rose-400">
<Image alt="test" src={"/2x3.png"} width={395} height={265}
style={{
width: '100%',
height: 'auto',
// objectFit: 'cover', 不希望拉伸图片而是裁剪
}}
/>
</div>