vote up 0 vote down star
<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?

flag

72% accept rate

1 Answer

vote up 2 vote down check
<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.

link|flag

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.