gpt4 book ai didi

jquery - 如何将 .css 类用于 .cshtml

转载 作者:太空宇宙 更新时间:2023-11-03 18:51:45 25 4
gpt4 key购买 nike

我无法从 site.css 文件访问 css 类。但是如果我在我的个人 View (.cshtml) 文件中编写这些类,那么我就可以访问它们。请建议代码详情如下: #面具 { position:absolute;

        /* You can customize to your needs  */
.Add-popup
{
background: white;
}

img.btn_close
{
float: right;
}
'
i have above classes in CSS file
1) this is my _layout.cshtml

'
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8" />
<title>@ViewBag.Title</title>
<link href="@Url.Content("~/Content/Site.css")" rel="stylesheet" type="text/css"/>
</head>
</html>
'

2) this is my view

'
@{

ViewBag.Title = "View";
Layout = "~/Views/Shared/_Layout.cshtml";
}
@if (false)
{
<script src="../../Scripts/jquery-1.7.1-vsdoc.js" type="text/javascript"></script>
<link type="text/css" href="../../Content/Site.css" rel="stylesheet" />
<script src="...../ui/jquery.ui.mouse.js"></script>
<script src="...../ui/jquery.ui.draggable.js"></script>
}
@if (User.IsInRole("Owner"))
{
<div id="box" class="Add-popup"> <a href="#" class="close"><img src="../../Content/images/close_button.png" class="btn_close" title="Close Window" alt="Close" /></a>
</div>
}

'
still i am not able to access those classess from CSS file.

please reply if anybody has solution?

最佳答案

这是基本选项 - 您将样式标签添加到文档的。

<link rel="stylesheet" href="site.css" type="text/css" />

如果您使用的是 bundle ,则将 bundle 放在那里:

@Styles.Render("~/Content/css")

最后,如果您使用的是主布局,那么这是放置它的最佳位置,因为它随后将应用于您的所有页面。

更新

如果您定位的是一个 ID,则使用 # 而不是代表类的点。

#Add-popup
{
background: white;
}

img.btn_close
{
float: right;
}

您也可以访问一个答案:how to refere CSS in CSHTML file?

关于jquery - 如何将 .css 类用于 .cshtml,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/14744210/

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