Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

i know that ie6 can only do hover on a href element. but i do not need a href element.

i have ul.li element like below

ul.testclass li {
    display: inline-block;


}



ul.testclass li:hover {
    background-color: #ffffff;


}

it work on all browsers except ie6. any workaround to make it work in ie6?

share|improve this question

3 Answers

up vote 1 down vote accepted

A common workaround is using a htc file.

share|improve this answer

Or you could use something like ie7.js

share|improve this answer

There's a variety of ways you can do it. The simplest is probably to use Dean Edwards' wonderful IE7.js.

share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.