gpt4 book ai didi

html - css 固定前 3 行和第一列

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

我有一张 table here .向下滚动时,我想修复前 3 行(从“学习者姓名”到“最高分”)。当我向右滚动时,还修复了第一列(领导者姓名、最高可能分数,包括(男性、数字和姓名))。

我试图将它添加到 css

table tbody, table thead{
display: block;
}

table tbody{
overflow: auto;
height: 100px;
}

table {
width: 350px; /* can be dynamic */
}

th {
width: 75px;
}

它修复了列,但表崩溃了。

最佳答案

div.fixed {
position: fixed;
top:1px
right: 0;
width: 100%;
border: 3px solid #73AD21;
}
.loose{

padding-top:130px;
}
<html>
<head>
</head>
<body>
<div class="fixed">
your fixed table here
</div>

<div class="loose">

your moving table here, inside loose div

</div>




</body>
</html>

关于html - css 固定前 3 行和第一列,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/40100402/

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