我的ASP.NET MVC4应用程序中有以下Ajax.ActionLink:
@Ajax.ActionLink("Customer Activity" , "CustomerActivity",null, new AjaxOptions {UpdateTargetId = "placeholder", InsertionMode = InsertionMode.Replace,HttpMethod = "GET"}, new { @class = "Button" })
我遇到了此链接样式的问题。目前它选择了“Button”类,并且风格正确,但在我的CSS中我有一个.button:hover,动作链接完全忽略了这一点。有谁知道防止这种情况的方法?
另外,有没有办法将上面的操作链接设置为根据它的父ID来继承属性?
例如。上面的链接在一个列表中,但它完全忽略了列表所具有的任何样式,并且它是否属于自己的东西?
答案 0 :(得分:0)
尝试在选择器中添加a
并添加!important
a.button:hover{
color:#ebe !important;
}