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>