tags:

views:

37

answers:

2

hi i have the following code and i want to display items.date Value in Bold on my UI is there any attribute for making My Value Bold any help pls


thanks

+1  A: 

How about enclosing it in a span to make it bold or adding a css style and applying it.

<span style="font-weight:bold">My Value Bold!</span>

or rather

<h:outputText value="AAAAAAA" style="font-weight:bold" />
zapping
+3  A: 

Just do:

<h:outputText value="AAAAA" style="font-weight:bold"/>

and this code will output the following html:

<span style="font-weight:bold">AAAAA</span>
kpolice
..and to learn more about this phenomenon called "CSS", start here: http://www.w3schools.com/Css/default.asp :)
BalusC