Original
body { background-color: #FFFFFF; } #wrapper { /*width: 1310px;*/ width: 100%; height: 500px; } #left { float: left; /*width: 650px;*/ width: 49%; height: 500px; overflow-x: auto; overflow-y: auto; /*margin-right: 10px;*/ margin-right: 2%; } #right { float: right; /*width: 650px;*/ width: 49%; height: 500px; overflow-x: auto; overflow-y: auto; }
Edit
body { background-color: #FFFFFF; } .text { width: 50%; } .wrapper { width: 100%; } .left { float: left; width: 49%; margin-right: 2%; } .scroll { height: 500px; overflow-x: auto; overflow-y: auto; } .right { float: right; width: 49%; }
Diff
Original
Edit