C# asp:ListBox hide vertical scrollbar
- by Codeffect
How to hide the vertical scroll bar of a Listbox that is present inside a div.
<div id="lstQueriesDiv" style="overflow-y: hidden !important; overflow-x: auto !important;
Width: 650px; height:167px;" >
<asp:ListBox ID="lstQueries" runat="server" CssClass="cssLstQueries" Rows="9"></asp:ListBox>
</div>
css:
.cssLstQueries{
Width:auto;
}
I want to hide the vertical scrollbar of the listbox not the the vertical scrollbar of the div.