How to make two div's scroll at the same time? I have two div's with text, but one div is bigger and I want to scroll both of them at the same time.
Any ideas?
.content {
width: 100%;
}
.left {
background-color: yellow;
width: 50%;
float: left;
max-height: 200px;
}
.right {
background-color: green;
width: 50%;
float: left;
max-height: 200px;
overflow: hidden;
overflow-y: scroll;
}