defines the space around elements (applies the specified value to all elements)
webix.ui({
view:"toolbar",
margin:20,
cols:[
{ view:"button", value:"Load" },
{ view:"button", value:"Save" },
{ view:"button", value:"Delete" }
]
});
The images below show how the margin property is applied:
default behavior
custom margin
Back to top