tags:

views:

55

answers:

1
<div style="height:100px;width:100%;overflow-x:hidden; overflow-y:scroll;">
    <asp:label id="lblInfo" runat="server"/>
</div>

My problem is vertical scroll always shown. My destination is when div inner text empty or not overflowed from height, scroll will hidden.

How can i do?

+2  A: 
<div style="height:100px;width:100%;overflow-x:hidden; overflow-y:auto;">
    <asp:label id="lblInfo" runat="server"/>
</div>

will do it.

See

overflow-y

Content is clipped and scrolling is added only when necessary.

rahul