Connecting Tech Pros Worldwide Help | Site Map

scroll the td of table

Member
 
Join Date: Jan 2009
Posts: 52
#1: Feb 12 '09
hi
is it possible in html or javascript that one td of table have a scroll bar for
scroll content of td without using <ifram> or frameset?
thanks
Expert
 
Join Date: Aug 2008
Posts: 397
#2: Feb 13 '09

re: scroll the td of table


Anything is possible. Sort of. Exactly what is it you want to happen, or not happen? And can you supply a page with a clickable link to it in your post that exhibits whatever it is that you seek help in solving..?
xaxis's Avatar
Newbie
 
Join Date: Feb 2009
Location: California, United States
Posts: 15
#3: Feb 13 '09

re: scroll the td of table


....
<td style="overflow:scroll;"></td>
....
or
....
<td style="overflow-y:scroll;"></td>
....
or
....
<td style="overflow-x:scroll;"></td>
....
hsriat's Avatar
Expert
 
Join Date: Jan 2008
Location: Bath, UK
Posts: 1,609
#4: Feb 14 '09

re: scroll the td of table


<td><div style="height:100px;overflow:auto;">Your Text</div></td>

Try this..
Reply