Search code examples
cssinternet-explorerselectcentertext-align

IE Select text align center


I'm trying to put a item at select in center at Ie. But it doesn't works. How can I do it?

<style type="text/css">
    select
    {
        width: 400px;
        text-align: center;
    }
</style>

<asp:ListBox ID="lsb" runat="server" Width="250px">
    <asp:ListItem Text="text" />
    <asp:ListItem Text="text" />
    <asp:ListItem Text="text" />
    <asp:ListItem Text="text" />
    <asp:ListItem Text="text" />
    <asp:ListItem Text="text" />
</asp:ListBox>

Solution

  • There is no way to apply style in item as a select on Internet Explorer. Sad, but is true.