0

I have used bootstrap css for my website. In Internet Explorer 10 the vertical scroll-bar disappears default. It appears only any operations made on the page like (mouseover, scroll, etc).

It appears the scroll-bar by the following image.

enter image description here

Is it default functionality in IE 10 ?

If it is an error how can I fix it?

EDIT

In IE 9 it looks like following.

enter image description here

Vignesh Bala
  • 889
  • 6
  • 25

2 Answers2

1

I don't have IE10, but in IE11 this is also the case, see my printscreen of the bootstrap website. This is also the case on many other websites. Here is a SO topic about this behaviour.

Bootstrap in IE11

Community
  • 1
  • 1
jdepypere
  • 3,453
  • 6
  • 54
  • 84
1

Place this in your css file:

@-ms-viewport{width:auto!important}

It should resolve your issue.

Ravi Khandelwal
  • 718
  • 1
  • 5
  • 15