gpt4 book ai didi

javascript - React Material-UI GridList层叠布局

转载 作者:行者123 更新时间:2023-11-29 15:22:14 25 4
gpt4 key购买 nike

是否可以像级联布局一样在 pinterest 中使用 React Material-UI 库的 GridList 组件?

我使用 Material-UI Card 组件作为 GridList 的子组件:

    const cards = props.items.map((item) => <Card key={item.id} {...item} />);
return (
<GridList cols={3} cellHeight={'auto'}>
{React.Children.toArray(cards)}
</GridList>
);

结果如下: The result image

我想删除红色圆圈中的间隙。任何帮助都感激不尽。

最佳答案

您想要的 CSS 等效项是将 flex-direction 设置为 column 而不是 row,但是 it doesn't look like the material-ui documentation gives you the option to change the order in which things render .

我会尝试使用不同的容器对象或自己构建一些东西,因为 Pinterest 样式布局在确定下一个要呈现的元素应该放在哪里时需要一些更复杂的逻辑。

关于javascript - React Material-UI GridList层叠布局,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/42762637/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com