我正在尝试使用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;
}
Run Code Online (Sandbox Code Playgroud)
这#nav div是一个菜单ul项目列表.
css3 ×1