views:

30

answers:

1

lets say i have a table cell with fixed width and height.... and i have data that exceeds the cell's fixed dimensions...

<td width="500" height="300">lots of data that exceeds the dimensions</td>
  • can i enable scrolling of this data within a cell....
  • if not than what is the solution.. i only have that 500 x 300 space
+3  A: 

The easiest thing would be to add a 500 x 300 div and give it overflow: auto

<td width="500" height="300">
 <div style="width: 500px; height: 300px; overflow: auto">
  lots of data that exceeds the dimensions
 </div>
</td>
Pekka
I should have checked first, yes div inside should do the trick +1 :)
Sarfraz
+1 nice solution
Sotiris