我想通过修复第一行和第一列来使我的 html 表格可滚动
我在下面提到的 stackoverflow 问题中尝试了各种答案,但没有一个给出正确的结果,或者它们改变了我原来的 css 设计
如何在滚动时锁定表格的第一行和第一列(可能使用 JavaScript 和 CSS)?
我怎样才能通过保持我原来的表格 CSS 设计来实现这一目标?我是 css 新手,所以我无法做到这一点。
我的 HTML/CSS 代码:
html {
line-height: 1.5;
font-family: Lato, sans-serif;
font-weight: normal;
font-size: 14px;
color: #212121;
}
body {
background: #fafafa;
margin: 0px;
}
html,
body,
{
position: fixed;
top: 0;
bottom: 0;
left: 0;
right: 0;
}
.container {
max-width: 1280px;
width: 100%;
position: relative;
margin: 0 auto;
}
.checkBox {
width: 100%;
margin: 12px 0px;
border: solid 1px #dcdcdc;
border-radius: 4px;
}
.checkBox thead tr {
background-color: #ddd;
}
.checkBox thead tr th {
text-transform: uppercase;
padding: 8px 12px;
font-size: 12px;
font-weight: bold;
letter-spacing: 1px;
text-align: left;
color: #7a7a7a;
}
.checkBox tbody tr th {
text-align: left;
padding: 4px 12px;
}
.checkBox tbody tr {
background: #fff;
}
.checkBox tbody tr:nth-child(even) {
background: #f6f6f6;
}
.checkBox tbody tr td {
padding: 0 8px;
}
子衿沉夜
相关分类