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 に答える