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.
Here you can find properties specifically related to the Stack container.
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.
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.
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; }
Add custom CSS style to the container. This will work as a style attribute for an HTML tag.
You can apply different styles to the container, for example, the following style will add a lightblue background:
background-color: #008EFF;
Choose what space is between different elements in the Stack container in pixels. Default value is 15.