Title in Flex Container

I just added a label inside a Flex Container tos how the tittle
image

In vision you could add tittles:
image

Is there other way to do it in perspective?

If no I stick with the label.

Cheers

There is no other way to give a Flex Container a title so you would have to use a Label, yes.

1 Like

You can achieve the same thing using css styling. you need the border and some absolute positioning for the label and set zindex properly.

a good example of some css on this ( you can mostly ignore the html, but the classes need to be properly applied to parents and components)

1 Like

Thank you guys, will try with the absolute positioning for the label. Cheers.

You can also just nest your flex row container containing the checkboxes inside a flex column container. Style the flex column container to have a border or show up as a surface, which you can do either via css or via the style editor when the flexbox is selected. Then drop in a label in your flex column container above the flex row container.

2 Likes

Good idea!