Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations bkrike on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

Scrolling the content in table

Status
Not open for further replies.

anilsantoshs

Programmer
Sep 16, 2003
18
FR
Hi,

I would like to know or have piece of code on how to scroll the content of the table cell which will be pulling the content from database.

Thanks
Anil
 
Set overflow to "scroll" and give the TD a height and width:

Code:
<td style="overflow:scroll; width:400px; height:300px;"> ... </td>

That will scroll the content, no matter whether it is pulled from a database or not.

Hope this helps,
Dan

[tt]D'ya think I got where I am today because I dress like Peter Pan here?[/tt]
[banghead]

 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top