我的html代码是:
<div id="arrow">
<b>Filter By: </b>
<a href="__#" onclick="GetAllTasks();" id="id_all" style="color: #88b807;">All</a>
<input type="text" size="3" style="display: none;" id="DateFilter" />
<a href="__#" onclick="GetByDate(this);" style="vertical-align: middle;" id="cal_icon">EndDate</a>
<a href="#"__0 onclick="GetMyTasks();" id="id_myposts">My Requests</a>
</div>
我的CSS代码是:
a:active {font-family: Verdana, Sans-serif;
color:#FF0000;
text-decoration:none;
background: url("Images/arrow_down.png") no-repeat;
background-position:center;
}
在这里,我希望箭头图像位于活动链接下方,以表明它处于活动状态。我已经尝试了上面的代码,但我没有得到所需的输出。