How to add a scroll bar to a particular column in a table(td)

hi,
i have a table with multiple rows contains data.
i need to place a vertical scroll bar to a perticular td. is it possible?
give me solution.

ex.
<table>
<tr>
<td></td>
<td></td>
<td></td> --- i want scroll bar for this column
<td></td>
</tr>
</table>

can anybody give me reply.

thanks.

with regards...
[458 byte] By [surendra.aluri] at [2007-11-20 11:45:42]
# 1 Re: How to add a scroll bar to a particular column in a table(td)
The <td> itself cannot do scroll bars, but you could place the contents within a <div> that can have scrollbars.

<td><div style="overflow: auto"></div></td>
PeejAvery at 2007-11-9 11:54:08 >