我正在尝试将 .net 下拉列表中的文本向右对齐。使用 CssClass 我可以在 Firefox 中将文本向右对齐。
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;
}