Mega Code Archive

 
Categories / Flex / Style
 

TextInput CSS style

<?xml version="1.0" encoding="utf-8"?> <mx:Application xmlns:mx="http://www.adobe.com/2006/mxml" layout="vertical" backgroundColor="#eeeeee">   <mx:Style>   @namespace mx "http://www.adobe.com/2006/mxml";     mx|TextInput {        font-size:24;       border-style:solid;       border-color:black;       border-thickness:4;     }   </mx:Style>   <mx:Spacer height="20"/>   <mx:VBox borderStyle="solid" borderColor="#000000" verticalGap="20" backgroundColor="white">     <mx:TextInput text="TextInput 1"/>     <mx:TextInput text="TextInput 2"/>     <mx:TextInput text="TextInput 3"/>   </mx:VBox> </mx:Application>