我使用<asp:changepassword />
控制,但我無法弄清楚如何我可以對齊新的密碼文本和其他領域的左側,而不是正確的。我已經嘗試添加一個類並執行text-align: left
,但對齊仍然在右側。對齊文本右asp:changepassword
可以對齊左邊嗎?
<asp:changepassword id="ChangePassword1" CssClass="teste" runat="server" continuedestinationpageurl="index.aspx"
oncancelbuttonclick="ChangePassword1_CancelButtonClick" onsendingmail="PasswordRecovery1_SendingMail"
changepasswordtitletext=" ">
<ChangePasswordButtonStyle CssClass="botaoAccaoBlue passwordbuttonsfix" />
<ContinueButtonStyle CssClass="botaoAccaoBlue passwordbuttonsfix" />
<CancelButtonStyle CssClass="botaoAccaoGray passwordbuttonsfix" />
</asp:changepassword>
這在pageLoad的:
ChangePassword1.ChangePasswordButtonText = Resources.Common.ResourceManager.GetString("ChangePassword", culture);
ChangePassword1.CancelButtonText = Resources.Common.ResourceManager.GetString("Cancel", culture);
ChangePassword1.PasswordLabelText = Resources.UserConst.ResourceManager.GetString("Password", culture);
ChangePassword1.ConfirmNewPasswordLabelText = Resources.Common.ResourceManager.GetString("ConfirmPassword", culture);
ChangePassword1.NewPasswordLabelText = Resources.Communication.ResourceManager.GetString("New", culture) + " " + Resources.UserConst.ResourceManager.GetString("Password", culture);
發佈您的代碼將是...幫助。 – 2013-03-14 19:53:24
而不是類嘗試將它應用於id #changepassword {text-align:left!important;}' – Shouvik 2013-03-14 19:56:13
爲什麼要更改控件的文本對齊?如果您嘗試使用RTL語言兼容性,請不要這樣做,因爲這完全是另一個屬性。 – Dai 2013-03-14 19:58:10