<mx:Style>
.mySpecialStyle {
color: red;
}
</mx:Style>
and in the mxml
<mx:Label class="mySpecialStyle" ..... />
hope this helps
On 19/09/2007, candysmate <[EMAIL PROTECTED]> wrote:
>
> I haven't worked much with CSS so please bear with me ...
>
> I have a style set for my Labels with:
>
> Label {
> font-size: 12;
> font-weight: bold;
> font-family: Verdana;
> }
>
> if I want a particular label to have a different style how do I do this?
> I tried styleName="mySpecialStyle" for the label in question without
> success.
>
>
>