Centering Subview

I have a small subview table with only 3 columns inside another, wider table. Is it possible to center the subview table in the middle of the bigger table when it is expanded? Currently it displays to the left side.

Is the view you have set as the Subview in a Flex container? If it is, I would try to center it there (in the view) and that SHOULD carry over to the table subview. If that doesn't work, there is definitely a CSS property you can add to the Advanced Stylesheet. The first option I mentioned above is the more obvious one, so I would try that first.

1 Like

Yes, configure the subview itself to use the appropriate flex property (can't ever remember their names, probably justify: center ?).
If it's a coordinate view, you can use something like calc(50% - {table_with} / 2) on the table's x property. Or use percent mode. But I hate percent mode.