So I have a html table that has a scroller(its a long table) and a search bar.The table is so long in fact that i dont want the user to be able to scroll down until they have typed a few letters in the search bar and the table has been shortened. Here is the css :
.table{
display: block;
height: 100px;
overflow-y: scroll;
overflow-x: hidden;
}
how do i disable the "overflow-y: scroll" in code?