<div id="box"></div>
#box{
height:40px;
width:100px;
background:red;
}
#box:hover{background:blue;}
#box:after{
content: "";
height: 10px;
position: absolute;
width: 0;
margin-top:50px;
background:red;
border: 10px solid transparent;
border-top-color: #04ADE5;
}
示例http://jsfiddle.net/zfQvD/4/
我在创建箭头后使用,但是当我将鼠标悬停在框上时,箭头背景没有改变?悬停在框上时如何更改箭头的背景?谢谢