sticky()
스티키(Sticky) 위치 설정 믹스인
용도
사용법
.usage {
@include sticky(t 100 z 1700);
}.usage {
position: sticky;
z-index: 1700;
top: 100px;
}믹스인에 설정 가능한 속성 키워드 및 값 유형
로직
참고
Last updated
스티키(Sticky) 위치 설정 믹스인
.usage {
@include sticky(t 100 z 1700);
}.usage {
position: sticky;
z-index: 1700;
top: 100px;
}Last updated
@mixin sticky($args: null) {
@include position(sticky, $args);
}