是否可以设置我的登录部分ActionLinks的悬停效果的样式,以便它们不包含任何文本修饰并更改为与蓝色不同的颜色。我认为它应该是":hover:text-decoration:none"
<li>@Html.ActionLink("Log in", "Login", "Account", routeValues: null, htmlAttributes: new { id = "loginLink", style = "font-size:12px; font-weight:800; letter-spacing:1px; text-transform:uppercase;" })</li>
答案 0 :(得分:1)
li #loginLink:hover{
color:red!important;
text-decoration:none!important;
}