asp.net - C# asp:ListBox hide vertical scrollbar -


To hide the vertical scroll bar of a list box that is present inside a div.

  & lt; Div id = "lstqueriesDiv" style = "overflow-y: hidden! Important; overflow-x: auto; important; width: 650px; height: 167px;" & Gt; & Lt; ASP: List Box ID = "LteEERE" Runat = "Server" CSS Class = "CSSList Queries" Rows = "9" & gt; & Lt; / Asp: list box & gt; & Lt; / Div & gt;  

CSS:

  .cssLstQueries {width: auto; }  

I want to hide the vertical scrollbar of the list box which is not the vertical scrollbar of the div.

remove OVERFLOW: auto ; From

  & lt; Div id = "lstQueriesDiv" style = "overflow auto: width: 650px; height: 167px;" & Gt;  

Because it is overwriting the CSS class where you have overflow: hidden;


Comments

Popular posts from this blog

windows - Heroku throws SQLITE3 Read only exception -

lex - Building a lexical Analyzer in Java -

python - rename keys in a dictionary -