Layout

Hi,
I have a layout with 4 columns. I want to have some space between columns. I tried different borders but they move columns a little, some pixels, when I need space about 50-80 pixels.

Is there some solution for this?

Thank you,
Panco.

Hello, Panco.

You can use “margin” property for this.

For example:

webix.ui({
  margin:80, //space between columns
  cols:[
    { template:'Column 1' },
    { template:'Column 2' },
    { template:'Column 3' },
    { template:'Column 4' },
  ]
});