CSS like Styles : CSS « Style « Flex
- Flex
- Style
- CSS
CSS like Styles

<?xml version="1.0" encoding="utf-8"?>
<mx:Application xmlns:mx="http://www.adobe.com/2006/mxml">
<mx:Style>
.myLabel
{
fontSize: 16;
fontFamily: Arial;
fontWeight: bold;
color: #FFCC00;
}
</mx:Style>
<mx:Label text="Styled Label" styleName="myLabel" />
</mx:Application>
Related examples in the same category