Html markup with padding size

Hi,
I’m a newer to webix.
1: When using “webix.markup.init()” my page display OK. But in DIV content, it looks like has some “padding space”. I set css style padding and maring to zero, it doesn’t work well. eg: "style=“padding: 0; margin: 0;”
2: My right div(has resizer). I set data-minWidth=“100”, it also not work. Pls give some help. Thanks!

code: http://webix.com/snippet/81b31453

(1) Yes, the template view has default padding. Can be disabled through css
http://webix.com/snippet/93a2fa40

(2) While parsing from HTML camel case attributes must be replaced with dashed one
“minWidth” => “min-width”
http://webix.com/snippet/43eee355

Great! Thanks maksim!