-
Beta Was this translation helpful? Give feedback.
Replies: 2 comments
-
Disclaimer: This is a very experimental bot using OpenAI's GPT-4. The answers may not be correct, a human will review the answer and update it if necessary. Yes, this is the expected behavior. When you set In your case, when you add If you want to control the width of the columns, you should use the Here's an example of how you can use it: <Grid gutter="space30" vertical>
<Column>
<Grid gutter="space30" equalColumnHeights>
<Column span={6}>
<Card >Hello</Card>
</Column>
<Column span={6}>
<Card>Hello</Card>
</Column>
</Grid>
</Column>
<Column>
<Card>Hello</Card>
</Column>
</Grid> In this example, the inner grid has I also did a search, and I managed to find these other Discussions that might be similar or related to your question. Give them a read to see if they answer your question. If they do, head back here and update this discussion and mark it as answered, pointing others to the related discussion:
|
Beta Was this translation helpful? Give feedback.
-
Hi @jhanley87 This is just an unfortunate limitation with the Flex box based grid component. We even call it out in the docs as the last sentence for that section:
It's never too much of a problem as the content of the card will most likely fill the width with the column, so this really doesn't come up too much. Long term, we want to move to a CSS grid based Grid components, which might give us a little more control over the layout of the children placed in the column. Even that is a fine balance, though, because the column doesn't "own" the content placed in it, and we try to never affect the styling of consumer supplied content, as we just don't know what your intention is going to be. Hopefully, the content added to your cards will fill up the column space enough for this to not be visible to users. |
Beta Was this translation helpful? Give feedback.
Hi @jhanley87
This is just an unfortunate limitation with the Flex box based grid component. We even call it out in the docs as the last sentence for that section:
It's never too much of a problem as the content of the card will most likely fill the width with the column, so this really doesn't come up too much.
Long term, we want to move to a CSS grid based Grid components, which might give us a little more control over the layout of the children placed in the colu…