开发者

C# asp:ListBox hide vertical scrollbar

开发者 https://www.devze.com 2023-01-03 17:34 出处:网络
How to hide the vertical scroll bar of a Listbox that is present inside a div. <div id=\"lstQueriesDiv\" style=\"overflow-y: hidden !impor开发者_如何转开发tant; overflow-x: auto !important;

How to hide the vertical scroll bar of a Listbox that is present inside a div.

<div id="lstQueriesDiv" style="overflow-y: hidden !impor开发者_如何转开发tant; 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.


Remove OVERFLOW:auto; from

<div id="lstQueriesDiv" style="OVERFLOW:auto; Width: 650px; height:167px;" > 

because it's overwriting the CSS class where you have overflow: hidden;


set the scrollbars in your object properties

0

精彩评论

暂无评论...
验证码 换一张
取 消