anantthakor
New Member
I'm having the following body\[code\]<div id="app-container"> <div id="canvas-container"> <div id="canvas"></div> </div></div>\[/code\]In CSS I have:\[code\]#canvas { position: absolute; background-color: transparent; width: 100%; height: 100%;}#app-container { height: auto !important; min-height: 100%;}#canvas-container { position: absolute; width: 100%; height: 100%; overflow: hidden;}\[/code\]after that I'm adding divs (with jquery.appendTo and jquery.offset) to \[code\]<div id="canvas"></div>\[/code\] with \[code\]display: inline-block;position: absolute;\[/code\]in CSS. So adding such a div cannot affect document size. If I add many divs some of them can be located below the edge of screen. How can I add a scrollbox, so that I can see all of divs?