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