gpt4 book ai didi

asp.net-mvc - 如何在asp.net mvc3中为特定页面编写css

转载 作者:行者123 更新时间:2023-12-05 01:03:13 25 4
gpt4 key购买 nike

Possible Duplicate:
How to reference a .css file on a razor view?

如何在 asp.net mvc3 View 中添加页面特定 css 但我不想添加

页眉中的css,还有其他解决方案吗???

最佳答案

您可以在 _Layout.cshtml 中定义一个部分:

<head>
...
<link href="@Url.Content("~/Content/Site.css")" rel="stylesheet" type="text/css" />
@RenderSection("styles", false)
...
</head>

然后在您的 View 中覆盖此部分以包含给定 View 的特定 CSS:

@section styles {
<link href="@Url.Content("~/Content/index.css")" rel="stylesheet" type="text/css" />
}

关于asp.net-mvc - 如何在asp.net mvc3中为特定页面编写css,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/12836712/

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