1

Is it possible to hide the scroll bar when the text inside it doesn't overflow the height of the container. i want to make the scroll bar visible when the text overflows or exceed the height.

CSS:

div {
    width: 150px;
    height: 150px;
    overflow: scroll;
}

HTML:

<div>
    sample text
</div>

SAMPLE JS: HERE

1 Answer 1

2

Use overflow:auto instead of overflow:scroll http://jsfiddle.net/Ly58w9ts/2/

Sign up to request clarification or add additional context in comments.

1 Comment

@MichaelPon yeah i forgot that

Your Answer

By clicking “Post Your Answer”, you agree to our terms of service and acknowledge you have read our privacy policy.

Start asking to get answers

Find the answer to your question by asking.

Ask question

Explore related questions

See similar questions with these tags.