我有一个元素,当用户将鼠标悬停在其上时:hover
(所以:hover
状态应该回到正常状态,但这不会发生。怎么了?
#test {
position: absolute;
top: 0;
left: 0;
width: 100px;
height: 100px;
background: red;
z-index: 20;
transition: left 1s linear;
}
#test:hover {
left: 200px;
background: green;
}
这是jsFiddle 演示。