jsf display sring in 2 colors
i have
IN JSP/JSF
<table style="border: none; width: 100%;" class="bgcolor">
<tr>
<td align="right" width="150px" >
<STRONG> <span class="required">*</span> Survey Target</STRONG>
</td>
<td align="left">
<h:selectOneRadio style="border-bottom: 0;border-right: 0;" id="surveyTargetId" value="#{proxySurveyBean.surveyTargetId}" layout="pageDirection">
<f:selectItems value="#{proxySurveyBean.surveyTargetItems}" id="surveyTargetItems" />
</h:selectOneRadio>
</td>
</tr>
</table>
IN BEAN
SelectItem[] surveyTarget = {
new SelectItem("peer",
"Peer(individuals evaluate their peers)"),
new SelectItem("self",
"Self(individuals evaluate themselves) "),
new SelectItem("author",
"Author(Participants evaluate author) ") };
Peer(individuals evaluate their peers)"),
i have a radio label in which want Peer string in black color and rest in the blue color . Please suggest
Thanks

