我想在我的cshtml页面中更改链接的颜色。
@Html.ActionLink("WareHouse", "WareHouseIndex", "Admin")
我想把上面这个链接的颜色变成白色。请建议我该怎么办?
答案 0 :(得分:7)
只需将htmlattributes参数添加到调用中,设置样式:
@Html.ActionLink("WareHouse", "WareHouseIndex", "Admin", null, new {style = "color:white"})
答案 1 :(得分:2)
使用:@Html.ActionLink("WareHouse", "WareHouseIndex", "Admin", null, new { style = "color: #fff" })
或更好new { @class = "white-link" }
并使用css进行样式。