You don't, table cells expand to fit content
You could use CSS to place a sized div in the cell with overflow set to auto,
HTML Code:
#sized_div {
height:[height-of-td]px;
width:[width-of-td]px;
overflow:auto
}
Replace the square brackets with actual pixel values
HTML Code:
<td>
<div id="sized_div">
text goes here
</div>
<td>
this would give a scrollable box inside the table cell.
__________________
Chris. ->> Please login or register to view this content. Registration is FREE <<-
A foolish consistency is the hobgoblin of little minds
Thought for today:- Is SEO the only industry where all the cowboys are Indians?
|