我遇到了IE无法呈现:hover效果的问题。这是我的CSS

#navlist li:hover {
    color: white;
    cursor: pointer;
    -webkit-border-radius: 5px;
    -moz-border-radius: 5px;
    border-radius: 5px;
    padding-top: 6px;
    padding-bottom: 6px;
    background-image: -moz-linear-gradient(top, #ffa23e, #e1841f);
    background-image: -webkit-gradient(linear, left top, left bottom, color-stop(0.00, #ffa23e), color-stop(1.0, #e1841f));
}


我在网上发现一些东西说IE忽略:hover,除了锚标记上。无论如何,有谁知道正确的解决方法?

另外,我正在使用HTML5文档类型-会在这里引起问题吗?

最佳答案

-moz-linear-gradient-webkit-gradient在IE中不起作用。完全没有CSS gradient generator营救。

关于html - li:资源管理器中的悬停问题,我们在Stack Overflow上找到一个类似的问题:https://stackoverflow.com/questions/9489927/

10-13 02:42