views:

149

answers:

4

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?

+1  A: 

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

Do you have some sample code?

John Weldon
A: 

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

The default value is visible.

Anonymous
A: 

I'm guessing you want this?

overflow: scoll;
Mike Robinson
+1  A: 

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

Fermin