我需要知道用于ASP表单的HTML容器,它可以使用CSS设置样式而不使用HTML表格的HTML表格。
在aspx页面上的这个表单示例:
<form id="WPF" runat="server">
<asp:Label ID="lblCCode" Text="Country Code" runat="server">
<asp:TextBox ID="txtCCode" runat="server" Width="85"></asp:TextBox>
</asp:Label>
<asp:Label ID="lblCName" Text="Country Name" runat="server">
<asp:TextBox ID="txtCName" runat="server" Width="150"></asp:TextBox>
</asp:Label>
<asp:Label ID="lblCPop" Text="Country Population" runat="server">
<asp:TextBox ID="txtCPop" runat="server" Width="130"></asp:TextBox>
</asp:Label>
答案 0 :(得分:1)
我建议您使用Bootstrap,如果可以的话。这是由Twitter团队创建的解决方案,并由Microsoft自己在其最新模板中进行认可。此外,由于其响应式架构,它是移动/平板电脑友好。
以下链接指向如何在页面上放置某些表单元素的示例代码: http://getbootstrap.com/components/#input-groups
克雷格
答案 1 :(得分:1)
使用DIV代替TABLE是众所周知的,很多东西都可以找到。
例如http://www.html-cleaner.com/features/replace-html-table-tags-with-divs/
如果它更简单,我不知道,但你有更多的选择。 但是,如果您的唯一目标是仅将CSS用于TABLE的样式,则可以使用CSS来修复有关TABLE的所有内容。见here