Flex CSS property font-family is case-sensitive!
This is just a little thing, but I have noticed that it isn’t widely understood. When using CSS in Flex to style components, the font-family property can be case sensitive on some operating systems. For example, the following CSS will not work on my Safari browser with Flash Player 10:
.content{font-family: arial;}
but this will work:
.content{font-family: Arial;}
