Scrollable Column

I have a table and within table coulmns I have Vertical Layout and within that I have form + horizontal Layout.
Now I want to make my table column scrollable.

I have found one solution for this:

.v-table tr td:nth-child(odd){
background: lightgray;
overflow-x:scroll;
overflow-y:visible;
}

.v-table tr td:nth-child(even){
background: lavender;
overflow-x:scroll;
overflow-y:visible;
}

but the problem that I am facing right now is this piece of code showing scroll bar on evrything inside the column.be it a form or button