I'm having trouble getting my table to scroll vertically. Can someone provide assistance? Here is the HTML code I am using:
<div class = scroll>
<table border="1">
<tbody>
<tr>
<th>Number</th>
<th>Name</th>
</tr>
<tr>
<td>
5
</td>
<td>
Hello
</td>
</tbody>
</table>
</div>
Additionally, here is my CSS code:
.scroll{
overflow:scroll;
}