gpt4 book ai didi

Css 效果无法正常工作到 mvc 中的 @Html.actionlink

转载 作者:太空宇宙 更新时间:2023-11-04 08:30:48 24 4
gpt4 key购买 nike

Action 链接:

        @Html.ActionLink("Edit", "Edit","City",new { id = item.CityID},new {@class= "PoPrint" })




Here is the Style I am applying:




<style>
PoPrint {
border: 4px outset;
padding: 2px;
text-decoration: none;
background-color: lightskyblue;
}
</style>

我有 @Html.ActionLink,我想让它看起来像按钮。我正在将 css 分配给我的 actionlink,但我的 actionlik 没有出现 css 效果。
我使用@class 来应用 css,但仍然无法正常工作。

最佳答案

你忘了在你的类名前加一个点,将 PoPrint 替换为 .PoPrint

<style>
.PoPrint { //you should put a dot before the classname
border: 4px outset;
padding: 2px;
text-decoration: none;
background-color: lightskyblue;
}
</style>

关于Css 效果无法正常工作到 mvc 中的 @Html.actionlink,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/44801415/

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