icon Stack

The Stack container allows you to place controls on a fixed distance from each other. This can be useful for fields that should always go together, like first and last name, or address fields.

Stack container

Stack Properties

Here you can find properties specifically related to the Stack container.

Overflow

Property that controls what happens to content that is too big to fit into an area. Two options are available:

  • No wrap option means that the content is clipped;

  • Wrap option means that the content wraps to the next line.

Overflow property

Class

Add a CSS class to the container, which comes in handy with CSS or even JavaScript code. This will work as a class attribute for an HTML tag.

Stack's class

Here’s an example CSS code that you can use in Theme Settings → Custom CSS to give the container with your class a thin black border:

.my-class {
    border: 1px solid black;
}

Style

Add custom CSS style to the container. This will work as a style attribute for an HTML tag.

Stack's style

You can apply different styles to the container, for example, the following style will add a lightblue background:

background-color: #008EFF;

Spacing

Choose what space is between different elements in the Stack container in pixels. Default value is 15.

Spacing property