gpt4 book ai didi

html - 与 _Layout 相比,在 _LoginPartial 中设置 ActionLinks 的样式

转载 作者:行者123 更新时间:2023-11-28 17:26:55 25 4
gpt4 key购买 nike

父问题:ASP.net MVC navbar-brand to header text color

我已经成功地更改了我的 _Layout 文件中 ActionLinks 的样式。他们以这种方式成功地从我的 Style.css 文件继承样式:

<li>@Html.ActionLink("About", "About", "Home", new { area = "" }, new { @class = "navbar-brand" })</li>

当我尝试对 _LoginPartial 文件中的 ActionLinks 执行相同操作时:

<li>@Html.ActionLink("Register", "Register", "Account", routeValues: null, htmlAttributes: new { id = "registerLink" }, new { area = "" }, new { @class = "navbar-brand" })</li>

添加到 _LoginPartial ActionLink 的引用是:

new { area = "" }, new { @class = "navbar-brand" }

这根本不起作用,但会破坏应用程序。这些链接是标准的 MVC,没有改变。

如何将样式应用于 _LoginPartial ActionLink?

最佳答案

你应该写:

@Html.ActionLink("Register", "Register", "Account", new { area = "" }, new { id = "registerLink", @class = "navbar-brand" })

关于html - 与 _Layout 相比,在 _LoginPartial 中设置 ActionLinks 的样式,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/27013389/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com