Using compound selectors : CSS Selector « Style « Flex
- Flex
- Style
- CSS Selector
Using compound selectors

<?xml version="1.0"?>
<mx:Application xmlns:mx="http://www.adobe.com/2006/mxml">
<mx:Style>
.Label {
fontSize: 10pt;
}
.myLabel {
color: Blue;
}
</mx:Style>
<mx:Label styleName="myLabel" text="This label is 10pt Blue"/>
</mx:Application>
Related examples in the same category