Float bottom line buttons to right

I have a large form with two bottom line buttons ‘Save’ and ‘Cancel’. How I can shift them to the right side?

Hi

add blockOffset to parent block or offsetLeft to 1st button, like below:

{type: “block”, width: “auto”, blockOffset: 100, list:[
{type: “button”, …, offsetLeft: 100},
{type: “newcolumn”},
{type: “button”, …}
]}

Buttons do not float to the right in this case but has fixed position from the left side and could disappear on form resize. I need to put them completely to the right so they stay on the right after resize.

by the default buttons aligned to left. if you want them on right side you have to setup marginLeft.