ListBox中的热对齐文本中心 - asp.net 4.0

时间:2011-09-26 19:21:09

标签: asp.net css listbox center text-align

如何在asp.net 4.0 ListBox元素中对齐中心文本。我试过cssclass但没有工作。谢谢。

1 个答案:

答案 0 :(得分:0)

这对我有用:

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

...

<asp:ListBox ID="listBox1" runat="server" CssClass="listbox-centered">
    <asp:ListItem Text="Item 1" Value="0"></asp:ListItem>
    <asp:ListItem Text="Item 2" Value="1"></asp:ListItem>
</asp:ListBox>