我正在尝试使用以下代码在View(ASP.MVC)中设置列的宽度:
<table >
<tr>
<th class="col1"></th>
<th>
@Html.DisplayNameFor(model => model.Ref)
</th>
</tr>
@foreach (var item in Model) {
<tr>
<td class="col1">
@Html.ActionLink("Edit", "Edit", new { id=item.DocumentsID }) | @Html.ActionLink("Details", "Details", new { id=item.DocumentsID }) | @Html.ActionLink("Delete", "Delete", new { id=item.DocumentsID })
</td>
<td>
@Html.DisplayFor(modelItem => item.Ref)
</td>
</tr>
样式表(Site.css)代码为:
.col1 {
width: 500px;
}
但是这段代码没有设置单元格的宽度。知道我可能会出错吗?