how to insert the scorl dowen area in the page

  • Thread starter Thread starter Guest
  • Start date Start date
G

Guest

I wants to put long text in to the the cell because i don't want to disturb
the page setup. How shod i put the scrolling TeX control by the users. Can
any one help me out.
 
<td width="300" height="200"><div
style="width:100%;height:100%;overflow:auto;">loads of text</div></td>

Change the width and height to suit your layout.
If you have lots of these cells, then move the CSS into an embedded or
external style sheet, and refer to it with a class:

In the <head> section:
<style type="text/css">
..ovf {width:100%;height:100%;overflow:auto;}
</style>

And in the page <body>

<td><div class="ovf">lots of text</div></td>
 
Back
Top