Is there a way to apply the overflow property to a cell within a table?
table {
width:100px;
height:100px;
}
td.content {
overflow:auto;
}
<table>
<tr>
<td>hmm</td>
</tr>
<tr>
<td class="content">
sadfasf<br>
sadfasf<br>
sadfasf<br>
sadfasf<br>
sadfasf<br>
sadfasf<br>
sadfasf<br>
sadfasf<br>
sadfasf<br>
sadfasf<br>
sadfasf<br>
</td>
</tr>
<tr>
<td>hmm</td>
</tr>
</table>