ext 按钮之间的间距

来源:互联网 发布:软件可靠性和健壮性 编辑:程序博客网 时间:2024/05/16 17:25
new Ext.Button({  minWidth:70,//按钮最小宽度  style: {         marginBottom: '10px',//距底部高度         marginLeft:'10px',//距左边宽度         marginRight:'10px'//距右边宽度  },  id : 'test',  text : 'button'});
0 0