ASP.NET MVC3 中具有多个类的 ActionLink
我很好奇,是否可以在 MVC3 Razor 语法中的 ActionLink 上使用多个 CSS 类? 下面的行似乎仅加载第一个类(btn)并跳过 btn_c。
@Html.ActionLink("Administration", "Index", "Admin", null, new { @class = "btn btn_c" })
I'm curious, is it possible to use multiple CSS classes on an ActionLink in MVC3 Razor syntax?
The line below appears to load only the first class(btn) and skipps btn_c.
@Html.ActionLink("Administration", "Index", "Admin", null, new { @class = "btn btn_c" })
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
我刚刚将您现有的 ActionLink 与以下 css 一起使用:
它成功生成了以下输出:
I've just used your existing ActionLink with the following css:
And it successfully produced the following output:
我在引导类方面遇到了这个问题,我没有另一个类覆盖引导类。事实上,我通过开发工具验证了我可以将“active”类添加到“nav-link”类中。
这是我的剃刀代码:
当我在开发工具中查看元素时,它只有“nav-link”类
I am having this exact problem with bootstrap classes, I do not have another class overriding the bootstrap classes. In fact I verified through dev tools that I can add the "active" class to the "nav-link" class.
Here is my razor code:
When I view the element in dev tools, it only has the "nav-link" class