0

i have an angular project and my view works fine in chrome and firefox but in IE 11 when the scrollbar appears the view doesn't resize automatically so i have some component covered by scroll bar

the menu css:

#menu-principal .navbar-lower {
  text-align: center;
  position: fixed;
  top: 40px;
  margin-bottom: 0;
  height: 35px;
  min-height: 35px;
  right: 0;
  left: 0;
  z-index: 1029;
}
el kou
  • 11
  • 2
  • Perhaps this is what you're looking for... http://stackoverflow.com/questions/17045132/scrollbar-overlay-in-ie10-how-do-you-stop-that – ui-matt Nov 12 '15 at 16:44
  • position fixed is tricky. I suggest you set overflow-y: scroll to the tag. – ed1nh0 Nov 12 '15 at 16:54
  • thank's for the help , like is mentioned in the link is was @-ms-viewport{ width: auto; } – el kou Nov 13 '15 at 08:03

1 Answers1

1

solved by adding @-ms-viewport{ width: auto; }

el kou
  • 11
  • 2