0

所以我使用了 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 & 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>
4

1 回答 1

1

我认为您需要使用 GridView 控件。然后在标记中,确保将 cellpadding 和 cellspacing 设置为零,然后应用以下 CSS...

table { border-collapse: collapse; }
table tr, table td, table th { border: solid 5px #000; margin: 0; padding: 0; }
于 2013-01-23T13:02:37.160 回答