Next Image Height

<Link href={{ pathname: `/shop/${shop.id}` }}>
<div className="cursor-pointer flex-col gap-3 transition duration-200 ease-in-out hover:bg-white hover:opacity-80">
{shop.imageURL && <Image src={shop.imageURL} alt="My Image" width={500} height={200} />}
<div className="mt-3 text-lg font-semibold decoration-8">{shop.title}</div>
{shop.rating && shop.price ? (
<>
<span className="text-lg font-light">Price: {getPrice()}</span>
<div className="flex justify-between">
<div>
{starRating}{' '}
<span className="text-sm font-light">
{reviewCount} review{reviewCount === 1 ? '' : 's'}
</span>
</div>
</div>
</>
) : (
<div>No reviews yet</div>
)}
</div>
</Link>
<Link href={{ pathname: `/shop/${shop.id}` }}>
<div className="cursor-pointer flex-col gap-3 transition duration-200 ease-in-out hover:bg-white hover:opacity-80">
{shop.imageURL && <Image src={shop.imageURL} alt="My Image" width={500} height={200} />}
<div className="mt-3 text-lg font-semibold decoration-8">{shop.title}</div>
{shop.rating && shop.price ? (
<>
<span className="text-lg font-light">Price: {getPrice()}</span>
<div className="flex justify-between">
<div>
{starRating}{' '}
<span className="text-sm font-light">
{reviewCount} review{reviewCount === 1 ? '' : 's'}
</span>
</div>
</div>
</>
) : (
<div>No reviews yet</div>
)}
</div>
</Link>
html the height isnt being applied to the image no matter what, the width is working correctly, any idea why?
6 Replies
Unknown User
Unknown User16mo ago
Message Not Public
Sign In & Join Server To View
batata
batata16mo ago
doesnt make a difference
JulieCezar
JulieCezar16mo ago
try object-contain on the outer div
Unknown User
Unknown User16mo ago
Message Not Public
Sign In & Join Server To View
batata
batata16mo ago
i added this
className="h-56 w-full object-cover"
className="h-56 w-full object-cover"
to the image but i still dont understand why the height isnt working on the <Image />
Unknown User
Unknown User16mo ago
Message Not Public
Sign In & Join Server To View
Want results from more Discord servers?
Add your server
More Posts