background-color
悬停菜单项时,我尝试使用过渡效果,但是它不起作用。这是我的CSS代码:
#content #nav a:hover {
color: black;
background-color: #AD310B;
/* Firefox */
-moz-transition: all 1s ease-in;
/* WebKit */
-webkit-transition: all 1s ease-in;
/* Opera */
-o-transition: all 1s ease-in;
/* Standard */
transition: all 1s ease-in;
}
该#nav
div
是菜单ul
项列表。
仅供参考,现在可以在Firefox中使用。在FF9中测试。
—
C.Brown