如何在以下代码中指定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>
答案 0 :(得分:3)
尝试类似
的内容<asp:ListItem style="color:blue">Item 1</asp:ListItem>
答案 1 :(得分:1)
COLD TOLD的答案看起来不错,但是如果您需要指定 all 的颜色,那么这些项目会改为:
<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>