html⼆个div同时滚动,HTML–让两个div共享相同的滚动条?给定两个div表⽰嵌⼊较⼤div的列.如果“!stuff”html表⽰会超过容器⾼度的多⾏数据,我该如何设置它以使两个col div溢出并从“容器”共享⼀个滚动条?
.container {
height: 100%;
width: 100%;
overflow-x: hidden;
overflow-y: scroll;
position: relative;
padding-bottom: 30px;
html横向滚动条样式
}
.col1 {
height: 100%;
width: 50%;
overflow-x: hidden;
overflow-y: visible;
position: relative;
float: left;
}
.col2 {
height: 100%;
width: 50%;
overflow-x: hidden;
overflow-y: visible;
position: relative;
float: right;
}
!Stuff
!Stuff

版权声明:本站内容均来自互联网,仅供演示用,请勿用于商业和其他非法用途。如果侵犯了您的权益请与我们联系QQ:729038198,我们将在24小时内删除。