플로팅 배너를 띄우려고 한다. 일정영역이 지나가면 스크롤을 따라 다니는 플로팅 배너 추후 더 생길 수 있어서 ul > li 구조에 넣었고, PC와 Mobile이 이미지가 달라서 pc_item / mb_item으로 구분해서 넣었다. html 구조 .event_banner { width: 120px; position: absolute; /* top 값은 위치에 따라 다르게 적용될 수 있음.*/ top: 1000px; bottom: auto; right: 5.21vw; z-index: 90; display: block; } .event_banner img { width: 100%; } .event_banner.fixed { position: fixed; /* top 값은 위치에 따라 다르게 적용될 수 있음.*..