所以我使用asp:changePassword显示允许用户显示密码的表单; 然后我将面板放在屏幕中心。但是我想在行之间添加间距/单元格填充: 到目前为止,我有:
<div style="position:relative;left:300px;top:100px;padding:10px;">
<asp:ChangePassword ID="ChangePassword2" CancelDestinationPageUrl="~/Default.aspx" ContinueDestinationPageUrl="~/Default.aspx" runat="server">
</asp:ChangePassword>
</div>
我试过了: TextBoxStyle-CssClass&amp; BorderPadding并尝试将div放在changePassword中,并使用'class'来居中它。
我看到有一个然后创建表和行等......
有更简单的方法吗?我想做的就是通过'cellpadding = 5px'分隔changePassword面板中的每一行
请告知谢谢
编辑:
<div style="position:relative;left:300px;top:100px;padding:10px;">
<asp:GridView ID="GV" runat="server" CellPadding="0" CellSpacing="0">
<asp:ChangePassword ID="ChangePassword2" BorderColor="#E6E2D8" BorderPadding="4" BorderStyle="Solid"
BorderWidth="1px" CancelDestinationPageUrl="~/Default.aspx" ContinueDestinationPageUrl="~/Default.aspx" runat="server">
</asp:ChangePassword>
</asp:GridView>
</div>
答案 0 :(得分:1)
我认为您需要使用GridView控件。然后在标记中,确保将cellpadding和cellspacing设置为零,然后应用以下CSS ...
table { border-collapse: collapse; }
table tr, table td, table th { border: solid 5px #000; margin: 0; padding: 0; }