Adjustable page division boundary

Brainiac

New Member
I have two columns in my HTML page. \[code\]<div id="content"> <div id="left"></div> <div id="right"></div></div>\[/code\]Each of them occupies half of the page\[code\]#content { height: 100%;}#left, #right { float: left; width: 50%; height: 100%; overflow: auto;}\[/code\]I'd like the boundary between left and right halves to be adjustable by the user. That is, the user can move the boundary to the left or to the right as he/she browses the page. Is it possible to do that somehow?
 
Back
Top