css转换仅适用于:hover

时间:2014-08-27 15:15:05

标签: hover css-transitions

Safari 7.0.6中存在错误!

大多数浏览器的默认链接颜色为蓝色。所以当我使用这个

a {
    color: #808080;
    text-decoration: none;
    -webkit-transition: color 10s;
    -o-transition: color 10s;
    -ms-transition: color 10s;
    -moz-transition: color 10s;
    transition: color 10s;
}
a:hover {
    color: #B01617;
}

在链接的外部CSS文件中,而不是insite

<style type="text/css">...</style>
http://jsfiddle.net一样,转换不仅适用于悬停效果。从blue#808080的转换也需要10s

任何人都可以证实吗?我在哪里可以向Apple报告?

0 个答案:

没有答案