I am looking to make my scrollbar invisible
without it being visible
however, I still want it to function when hovering over the box
Also, I need it to work smoothly on both tablets and computers, which is why I have opted for using html5
I would greatly appreciate any assistance
.scrollable {
height: 100px;
overflow-y: scroll;
}
<div class="scrollable">
<table>
<tr>
<td>row 1</td>
</tr>
<tr>
<td>row 2</td>
</tr>
<tr>
<td>row 3</td>
</tr>
<tr>
<td>row 4</td>
</tr>
<tr>
<td>row 5</td>
</tr>
<tr>
<td>row 6</td>
</tr>
<tr>
<td>row 7</td>
</tr>
<tr>
<td>row 8</td>
</tr>
</table>
</div>