1

I have a div with css setting overflow auto but noscrollbar appears whereas once i have visited some other page it comes on the page.

Also if possible how can I remove overflow style of div?

0

4 Answers 4

1

The overflow auto only shows scrollbars when the content exceeds the size of the element...

Do you have some sample code?

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

Comments

1

Check out this reference for an overview of the overflow property.

Comments

0

Also if possible how can I remove overflow style of div?

The default value is visible.

Comments

0

I'm guessing you want this?

overflow: scroll;

Comments

Your Answer

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