-1

It was:

margin-top: -10px;

and now is:

margin-top: -10px\9; /*lte IE 8*/

Is this a typo or is there a reason for it?

Nasreddine
  • 36,610
  • 17
  • 75
  • 94
Billy Moon
  • 57,113
  • 24
  • 136
  • 237
  • 3
    This is a "CSS Hack" for IE like explained here : http://stackoverflow.com/questions/8004765/css-9-in-width-property – lddz Oct 09 '15 at 14:48
  • and here : http://stackoverflow.com/a/13571909/1606432 – Pogrindis Oct 09 '15 at 14:49
  • 3
    This is why commits have messages. The commit message gives precisely the explanation you're looking for. Even the comment in the line of code you copied contains an abridged version of the explanation. – BoltClock Oct 09 '15 at 14:50

1 Answers1

1

This is a "CSS Hack" for IE, to make it render properly.

CreativePS
  • 1,105
  • 7
  • 15