我对html / css / asp.net很新,所以请耐心等待..
我有自己的HTML代码,可以将自定义样式放在桌面上:
<head>
<style>
table {
font-family: arial, sans-serif;
border-collapse: collapse;
width: 100%;
}
td, th {
border: 0px solid #dddddd;
text-align: left;
padding: 8px;
}
tr:nth-child(even) { background-color: #dddddd; }
</style>
</head>
<table>
<tr>
<td>Deltavista</td>
<td>
<Button>Download</Button>
</td>
</tr>
</table>
这用于默认的asp.net mvc页面。在_Layout.cshtml中,样式以这种方式包含在内:
@Styles.Render("~/Content/css")
BundleConfig.cs中的bundle看起来像:
bundles.Add(new StyleBundle("~/Content/css").Include(
"~/Content/bootstrap.css",
"~/Content/site.css"));
当我现在将代码从头部的样式标记移动到site.css时,不再应用自定义样式。我做错了什么?
答案 0 :(得分:1)
尝试删除浏览器中的cookie和临时文件
答案 1 :(得分:0)
尝试清除浏览器缓存,或尝试使用其他浏览器查看该页面。浏览器缓存有时可以让你脱掉头发。