我想知道为什么下面的高度71px
会将 div 滚动到底部?
我需要,58px
但是当页面加载时滚动应该保持在顶部。
有人知道设置这个的配置吗?
$(".scro").mCustomScrollbar({
scrollButtons: {
enable: true
}
});
.scro {
width:260px;
height:71px; // 70px
background:#333;
}
更新:如果按钮为假,则行为是正确的。
scrollButtons:{
enable:false
}