gpt4 book ai didi

reactjs - 使用 Reactstrap 响应表的具有固定标题的可滚动表

转载 作者:行者123 更新时间:2023-12-05 04:42:38 27 4
gpt4 key购买 nike

我有这张表 https://stackblitz.com/edit/reactstrap-v8-pwyocr?file=Example.js在我的一个项目中实现只是想要的是可以使标题保持不变并且只使表体移动(像这样的东西:https://v4.mui.com/components/tables/#fixed-header)

谁能帮我解决这个问题

最佳答案

为标题单元格使用粘性位置,并确保使用 z-index 和背景可以在正文单元格上方看到它们

react :

...
<Table height="200" bordered className="fixed-header">
...

CSS:

.fixed-header thead th { /* the thead selector is required because there are th elements in the body */
position: sticky;
top: 0;
z-index: 10;
background-color: white;
}

注意:该解决方案可能会导致页眉边框出现问题 - 它们不会在滚动中显示。这个问题建议了该问题的可能解决方案: Table headers position:sticky and border issue

关于reactjs - 使用 Reactstrap 响应表的具有固定标题的可滚动表,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/69812993/

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