본문 바로가기
개발일지

tailwindcss 이미지 위에 다른 component 쌓기

by 케이오스 2021. 11. 23.

예제

출처: https://stackoverflow.com/questions/68255008/tailwind-css-text-over-image-problems

 

Tailwind CSS text over image problems

I'm trying to code as below https://play.tailwindcss.com/5x8mBABcsW How I can place the text over the circle image? I need the text centered and rounded on the bottom of the image. I also want to b...

stackoverflow.com

예제처럼 배치하는 방법

<div class="relative w-40 h-40 rounded-full overflow-hidden">
  <img src="https://www.w3schools.com/howto/img_avatar2.png" alt="Avatar" class="object-cover w-full h-full" />
  <div class="absolute w-full py-2.5 bottom-0 inset-x-0 bg-blue-400 text-white text-xs text-center leading-4">this is a text</div>
</div>

 

relative, object-cover, absolute, bottom-0, inset-x-0

이것들이 핵심인 듯...

Oort cloud

* truncate: 넘치는 문자열 "..." 으로 바꿔줌.

 

 

글 쓰고 보니, 333 달성..ㅋㅋㅋ

따로 기념하기도 모하고..-0-;

여기에 남기자.