gpt4 book ai didi

html - 在 html Angular 表中固定标题和可滚动主体

转载 作者:行者123 更新时间:2023-11-28 05:13:28 26 4
gpt4 key购买 nike

在 Angular 中我有一个表格,它应该是可滚动的。但标题应该是固定的。但是滚动标题不固定。请帮忙

最佳答案

嗯,要求似乎是你想要一个可滚动的表体。不确定在这种情况下 Angular 是否能让事情有所不同。可以肯定的是,请参阅 https://jsfiddle.net/hh6etg6s/ 处的 fiddle 。如果这能达到目的。

.tablediv {
padding:20px;
}
table ,tr td{
border:1px solid red
}
tbody {
display:block;
height:200px;
overflow:auto;
}
thead, tbody tr {
display:table;
width:100%;
table-layout:fixed;/* even columns width , fix width of table too*/
}
thead {
width: calc( 100% - 1em )/* scrollbar is average 1em/16px width, remove it from thead width */
}
table {
width:400px;
}

关于html - 在 html Angular 表中固定标题和可滚动主体,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/50640725/

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