Mega Code Archive

 
Categories / Flex / Style
 

CSS Style Tag

<?xml version="1.0" encoding="utf-8"?> <mx:Application xmlns:mx="http://www.adobe.com/2006/mxml" layout="absolute">     <mx:Style>         @namespace mx "http://www.adobe.com/2006/mxml";         mx|Label {             fontSize: 72;             fontFamily: Futura, Helvetica, Arial;             fontWeight: bold;         }     </mx:Style>     <mx:Label text="This Uses the Style Tag" /> </mx:Application>