0

I am facing this issue on IE7 only, when I am scrolling the page: Text of some section is not scrolling properly, although a horizontal line is scrolling.

May be it's a loading issue but I need to solve this.

Technology is HTML5, bootstrap, CSS3. Framework is MVC.

enter image description here

Look at the Search Again text in the image above.

Mark Hurd
  • 10,665
  • 10
  • 68
  • 101
supersaiyan
  • 1,670
  • 5
  • 16
  • 36

1 Answers1

3

This sounds like a the IE7 Text Redraw bug:

http://zomigi.com/blog/ie-7-button-text-redraw-bug/

http://www.lifeathighroad.com/web-development/fixed-ie7-button-text-redraw-bug/

try adding this to the button css:

overflow: visible

If that doesn't work try this:

border: 1px solid transparent;
rdjs
  • 594
  • 2
  • 18