Position 그림과 글자 겹치게
2022. 8. 10.
position: relative; [부모] 요소를 자기 자신을 기준으로 배치함 position: absolute; [자식] 요소를 기준으로 배치함 relative 기준을 설정해야, absolute 사용시 기준 박스 안에서 표현이 가능 (top, bottom, left, right) * [부모] 설정없이 [자식]을 사용하는 경우 기준 박스 범위 영역에서 벗어난다. img{ max-width: 100%; height: auto; } /* 오버레이 */ .image-banner { position: relative; } .image-banner img { display: block; } .banner-description { position: absolute; bottom: 0; left: 0; color:..