jmo*_*gro 5 sticky zurb-foundation-6
如何使用 Foundation 获得仅粘在小断点上的粘性元素? data-sticky-on="small"适用于小型及以上
对于那些有兴趣的人。我在使用sass时发现了这个解决方案。
//Desktop settings
@include breakpoint(medium) {
//Disable fixed top bar on mobile
.sticky {
position: initial !important;
}
}
Run Code Online (Sandbox Code Playgroud)