본문 바로가기
Javascript

스와이퍼 swiper z index 이슈

by @hohoya33 2022년 08월 03일

swiper 슬라이드 적용 시 스와이프 할 때 absolute로 잡은 영역이 뒤로 겹치는 이슈

z-index 대신 아래 속성 추가

 

transform: translate3d(0, 0, 0);

  .bottom {
    position: absolute;
    right: 10px;
    bottom: -10px;
    transform: translate3d(0, 0, 0);
  }

개의 댓글