Re: SCROLLING TEXT -
06-15-2004
, 03:47 PM
Yes, the CSS property called overflow, typically used within a DIV set.
<DIV ID="myDiv" style="overflow:auto">
scrolling content
</DIV>
Choose "auto" if you want the scrollbars to only appear when the content is
too long to fit.
Choose "scroll" if you want the scrollbars to appear regardless of the content
height and width.
Personally, I stick with Auto. I also would not recommend using more than one
scrolling DIV on the same page; otherwise the whole page looks as ugly as
frames (IMNSHO).
Hope this helps. Happy scrolling!
~e |