1

How do i remove the scrolling bar from

.class{
 overflow: auto;
 }

2 Answers 2

4

Setting overflow: auto is actually telling it to have scroll bars.. To avoid them you need:

overflow: hidden;

Is that what you're after, or do you still need the content to scroll?

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

Comments

2

Remove overflow: auto; or use overflow: hidden;

Comments

Start asking to get answers

Find the answer to your question by asking.

Ask question

Explore related questions

See similar questions with these tags.