我想將我的.net下拉列表中的文本對齊到右側。使用CssClass我能夠在Firefox中將文本對齊到右側。.net dropdownlist align text
IE不會將文本對齊到它與左邊對齊的右邊。 我讀過IE 6不支持這個。
- 這是真的嗎?
我使用的是IE7,但我的大部分用戶都是在IE 6中,所以都需要工作。
<asp:DropDownList ID="ddlNomination" Width="250px" CssClass="ddlnomination"
runat="server" DataSourceID="Azoa" DataTextField="nomination_type"
DataValueField="nomination_type">
<asp:ListItem> </asp:ListItem>
</asp:DropDownList>
CSS
.ddlnomination
{
text-align:right;
}