3

I was looking through Twitter's CSS and I found this

.dm-threads {
height: 380px;
overflow-x: hidden;
overflow-y: scroll\9;
}

Then I've also found it as an answer on SO here, but there's no information about this anywhere. So Can anyone clarify this for me ? What does the "\9" do ?

Community
  • 1
  • 1
Alex
  • 4,674
  • 5
  • 38
  • 59

1 Answers1

5

The \9 is a hack For Internet Explorer 8 or below. That rule is only read for this explorers.

See more here http://webdesignerwall.com/tutorials/css-specific-for-internet-explorer

DaniP
  • 37,813
  • 8
  • 65
  • 74