|
rubyaim -> RE: scrolling text with a still background (1/3/2007 21:55:23)
|
Never feel bad about asking things [:)] Basically, the way the scroll works (using overflow:auto) is that if the content is too long for the space provided, the browser will show the scroll bars. I'm guessing that you are increasing the height and the text actually fits so the scroll bars do not appear. You could try using a fixed height in pixels instead of em if it's easier at this stage, maybe try 500px initially and play around a little. If you would like the scroll bars to be displayed all the time, you could try overflow:scroll instead of overflow:auto . Hope this makes sense. Here is more info on overflow and clipping.
|
|
|
|