【发布时间】:2015-01-16 02:44:20
【问题描述】:
我正在尝试让 div 的背景颜色进行过渡,但似乎没有任何效果。我曾尝试在此处和其他网站上进行研究,但没有发现任何可行的方法。非常感谢任何帮助。
这是 CSS:
.nav a:hover
{
color:black;
background-color:white;
}
.nav
{
width:200px;
position:relative;
left:10px;
top:125px;
background-color:black;
font-size:1.4em;
font-family: "Trebuchet MS", "Lucida Grande", Tahoma, sans-serif;
text-align:center;
color:white;
text-decoration:none;
vertical-align:middle;
-webkit-transition: width 2s linear;
-moz-transition: width 2s linear;
transition: width 2s linear;
}
【问题讨论】:
标签: css transition