我的一个学生有以下代码:
<title> Portfolio
</title>
<link rel="stylesheet" type="text/css" src="portfolio1style.css">
</head>
portfolio1style.css与HTML文件位于同一个文件中,并且拼写正确。 当我们在内部将它放入doc时,CSS就可以工作了。 这里发生了什么? 感谢
答案 0 :(得分:2)
你希望它看起来像这样:
<table>
@int i = 0;
@foreach (var product in @Model.CustomizedList.ItemsFound)
{
if(i % 5 == 0)
{
@:<tr>
}
@:<td>
Html.RenderPartial("_Product", product);
@:</td>
if((i + 1) % 5 == 0)
{
@:</tr>
}
++i;
}
</table>
将<link rel="stylesheet" type="text/css" href="portfolio1style.css">
切换为src
答案 1 :(得分:2)
尝试添加href="portfolio1style.css"
而不是src