【发布时间】:2010-12-10 16:56:06
【问题描述】:
我试图在悬停菜单项时使用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;
}
#navdiv 是一个菜单 ul 项目列表。
【问题讨论】:
标签: css