0

如何在以下代码中指定 ListItem 的文本颜色?谢谢。

<asp:CheckBoxList id="check1" AutoPostBack="True"
TextAlign="Right" OnSelectedIndexChanged="Check"
runat="server">

<asp:ListItem>Item 1</asp:ListItem>
<asp:ListItem>Item 2</asp:ListItem>
<asp:ListItem>Item 3</asp:ListItem>
<asp:ListItem>Item 4</asp:ListItem>

</asp:CheckBoxList>
4

2 回答 2

3

尝试类似的东西

<asp:ListItem style="color:blue">Item 1</asp:ListItem>
于 2012-12-20T07:52:38.577 回答
1

COLD TOLD 的答案看起来不错,但是如果您需要为所有项目指定颜色,请改为:

<head runat="server">
    <title></title>
    <style type="text/css">
        .checkboxList label
        {
            color:Red;
        }
    </style>
</head>
<body>
    <form id="form1" runat="server">
    <div>
        <asp:CheckBoxList CssClass="checkboxList" ID="check1" AutoPostBack="True" TextAlign="Right"
            runat="server">
            <asp:ListItem>Item 1</asp:ListItem>
            <asp:ListItem>Item 2</asp:ListItem>
            <asp:ListItem>Item 3</asp:ListItem>
            <asp:ListItem>Item 4</asp:ListItem>
        </asp:CheckBoxList>
    </div>
    </form>
</body>
于 2012-12-20T09:34:47.327 回答