2016-12-12 10 views

답변

2

관심있는 사람들을 위해. 나는 sass를 사용할 때이 해결책을 발견했다.

//Desktop settings 
@include breakpoint(medium) { 
    //Disable fixed top bar on mobile 
    .sticky { 
     position: initial !important; 
    } 
} 
+1

'position : initial'은 특정 버전의 IE에서 지원되지 않기 때문에'position : initial'을'static'으로 대체 할 수 있습니다 (source : [Position initial] (http://stackoverflow.com/)). A/15343567/2228912)). – h4k1m

+1

상단 여백이 스크롤 할 때'sticky'에 영향을 미치므로'margin-top : 0! important'를 추가 할 것입니다. – h4k1m