本文介绍了突出显示菜单html中的活动标签的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!
问题描述
asp.net-仅在母版页中的ul,li链接菜单,单击链接时突出显示带有背景图像的活动选项卡
asp.net - ul, li,a link menu only in master page, highlight the active tab with background images when click the link
推荐答案
a:active{
background-color: yellow;
background-image:url(...);
}
这是激活时锚的样式!
this is the style of a anchor when active!
这篇关于突出显示菜单html中的活动标签的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!