I have a need to have a couple of scrolling text areas on a page.
I know I can do this with CSS and a style such as
.scroller {
overflow: auto;
height: 350px;
width: auto;
}
and then apply it to a <div> tag, however I want the text box to extend to the bottom of the page and not be of a fixed size. Setting "height: auto" does not seem to achieve this.
I could move to using frames which will provide their own scrolling but I'd rather not do this if I can avoid it.
Any ideas??
I know I can do this with CSS and a style such as
.scroller {
overflow: auto;
height: 350px;
width: auto;
}
and then apply it to a <div> tag, however I want the text box to extend to the bottom of the page and not be of a fixed size. Setting "height: auto" does not seem to achieve this.
I could move to using frames which will provide their own scrolling but I'd rather not do this if I can avoid it.
Any ideas??