user1165861
user1165861

Reputation: 857

No scroll bar in IE8

Hey my site works fine except in IE8. The page does not display a vertical scroll bar. I added html { overflow-y :scroll } to the css and only got a scroll bar which does not allow you to actually scroll down. My site is eagleview.it

Thanks very much

Upvotes: 2

Views: 3746

Answers (1)

Dips
Dips

Reputation: 3280

You can use this to fix on IE

-ms-overflow-y : scroll;

Or this may work as well

html {
   height:101%;
}

Upvotes: 1

Related Questions