Is it possible to use the overflow property within a plain old html table? I have tried adding the overflow tags to my css, but it wont' seem to take. Thanks in advance!Hmm.. this should work:
table {
overflow: hidden;
}
/* other overflow options are scroll auto visible inherit */You need to put a div in the cell then apply the overflow to that
<td>
<div style="overflow:auto;height:50px">
Content
</div>
</td>Perfect, thank you so much! The div in the cell worked exactly as I wanted. Thanks to both of you!
table {
overflow: hidden;
}
/* other overflow options are scroll auto visible inherit */You need to put a div in the cell then apply the overflow to that
<td>
<div style="overflow:auto;height:50px">
Content
</div>
</td>Perfect, thank you so much! The div in the cell worked exactly as I wanted. Thanks to both of you!