新手问题,显示数据怎么固定宽度???
<asp:Content ID="Content2" ContentPlaceHolderID="MainContent" runat="server">
<h2>测试表</h2>
<div style="overflow:scroll">
<table>
<tr>
<th>
编号
</th>
<th width="100">
姓名
</th>
<th>
性别
</th>
<th>
住址
</th>
</tr>
<% foreach (var item in Model) { %>
<tr>
<td>
<%= Html.Encode(item.BH) %>
</td>
<td width=100>
<%= Html.Encode(String.Format("{0:F}", item.XM)) %>
</td>
<td>
<%= Html.Encode(item.XB) %>
</td>
<td>
<%= Html.Encode(item.ZZ) %>
</td>
</tr>
<% } %>
</table>
</div>
</asp:Content>
每一列的宽度不能固定,我用 width 值设置成了100,好像也没反应。知道的朋友请告诉我,谢谢。
------解决方案--------------------
如需要阅读该回复,请登录或注册CSDN!
------解决方案--------------------<tr style="width:100px">