Hover effects not working with IE8

后端 未结 3 1480
慢半拍i
慢半拍i 2020-11-28 15:02

I used CSS for a color change on hover for a table

#tabb tbody tr:hover td{
    color:#006;
    background:#d0e4f2;
}

This works fine in Ch

3条回答
  •  情书的邮戳
    2020-11-28 15:58

    That should work fine in IE8.

    A stab in the dark:

    Make sure you have a doctype as the very first line of your HTML that triggers Standards Mode, such as:

    
    

    In Quirks Mode, IE emulates version 5.5, which does not support :hover on elements other than a.

提交回复
热议问题