Created
May 3, 2022 01:57
-
-
Save x3r0s/0f8c7128dbd76127f4c317d926ed31ce to your computer and use it in GitHub Desktop.
Next.js <Image> & tailwind 반응형 이미지 제공하는 방법
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
import Image from 'next/image' | |
<div> | |
<div className="md:hidden"> | |
<Image src="Banner-767x500.webp" height={500} width={767} /> | |
</div> | |
<div className="hidden md:inline-flex lg:hidden"> | |
<Image src="Banner-1023x500.webp" height={500} width={1023} /> | |
</div> | |
<div className="hidden lg:inline-flex xl:hidden"> | |
<Image src="Banner-1400x500.webp" height={500} width={1400} /> | |
</div> | |
<div className="hidden xl:inline-flex"> | |
<Image height={500} width={2000} src="Banner-2000x500.webp" /> | |
</div> | |
</div> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment