Being new to the use of div, I am facing some problems which I hope you can help with.
CSS
#wrapperBox {
width: 100%;
border-style: solid;
border-width: 1px 0;
border-color: #f3a538;
background-color: #ffffff;
overflow: hidden;
box-shadow: 5px 5px 5px #cccccc;
}
.rullerContent {
width: 100%;
height: 465px;
border: 0px;
overflow: auto;
}
HTML
<div id="wrapperBox">
<div class="rullerContent">
Here is a lot of text, so vertical scroll will appear.....
</div>
</div>
My problems:
1) The scroll pushes the other content of the page. Can I in some way dedicate space for the scrollbar or hide it (even better), but still get scrolling function?
2) Can I define the height to be "to the bottom of the browser window", so it appears as the text just keeps coming, without having the vertical scroll on the entire page?
Hope you can help and I have been specific.
Regards