想实现左右都可以滚动,且互不影响。
只需要再左边的css里面
css
.threedlist {
cursor: pointer;
width: 280px;
position: fixed;
height: 100vh; /* 定义父容器高度 */
overflow-y: auto; /* 只有在内容超过父容器高度时才出现滚动条 */
}
如果想取消滚动条样式
css
.threedlist::-webkit-scrollbar {
display: none; //隐藏滚动条。
}
而右边的样式可能靠过去了,需要再加个定位即可
css
.threedright {
position: relative;
left: 280px;
}