2 글 보임 - 1 에서 2 까지 (총 2 중에서)
  • 글쓴이
  • #6424
    mimoon
    키 마스터

      /*—iStock hight
      ——*/
      div.mimoo-before-content {
      height: 200px;
      }

      ignore serial

      #6484
      mimoon
      키 마스터

        mobile에서는 적용이 안 되어 다음 css 추가

        /*—iStock hight for mobile—- */

        @media only screen and (max-width: 769px) {
        div.mimoo-before-content {
        height: 100px;
        }

        그러면 mobile관련 다른 css 문제 발생.
        그래서 사이즈 조정

        @media only screen and (max-width: 400px) {
        div.mimoo-before-content {
        height: 100px;
        }
        }

        그래도 해결이 안 된다면,
        문제 있는 css들을 모조리 위 css보다 우선 처리 위치 상위로 이동할 것.

      2 글 보임 - 1 에서 2 까지 (총 2 중에서)
      • 답변은 로그인 후 가능합니다.