Mega Code Archive

 
Categories / Flex / Container
 

VBox Gap And Padding

<?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"       horizontalAlign="center"     paddingBottom="20" paddingLeft="20" paddingRight="20" paddingTop="20"     verticalGap="20" backgroundColor="white">     <mx:TextInput text="TextInput 1"/>     <mx:TextInput text="TextInput 2"/>     <mx:TextInput text="TextInput 3"/>   </mx:VBox> </mx:Application>