如何使表格的第一列和第二列粘性

发布于 2024-12-09 01:04:43 字数 435 浏览 0 评论 0原文

有一个属性,

<div id="_body_container" style="height: 500px; overflow-x: auto; overflow-y: auto; ">
</div>`

我有一个 div ,这个 div 中 发生的左右滚动事件

我有一个 table ,它有类 views-table ,这个表格有 100% 的宽度,这使得它的父 div:_body_container 可滚动。我想修复此表的第一列和第二列粘在其位置,而 _body_container结构 是例如:在此处输入图像描述

i have a div with with property

<div id="_body_container" style="height: 500px; overflow-x: auto; overflow-y: auto; ">
</div>`

inside this div i have the table which has class views-table, this table has 100% width which makes it's parent div:_body_container scrollable.I want to fix the first and the second column of this table sticky at their positions while the left and right scroll event happen for _body_container

structure is like:enter image description here

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(2

无人问我粥可暖 2024-12-16 01:04:43

假设每个部分都是一个 元素...

CSS

table {
    position: relative;
    padding-left: (width-of-your-td-elements);
}
table td:first-of-type {
    position: absolute;
    left: 0;
}

尝试一下。已经很晚了,我也喝醉了,所以我对此不太确定。哦,请记住这是使用 CSS3,<= IE8 不支持 CSS3。

如果这有效,您只需添加 position:absolute; left:0; 到一个 class 并以这种方式定位第一个元素。

Assuming each section is a <td> element...

CSS

table {
    position: relative;
    padding-left: (width-of-your-td-elements);
}
table td:first-of-type {
    position: absolute;
    left: 0;
}

Try that out. It's late and I'm drunk, so I'm not entirely sure on this. Oh, and keep in mind this is using CSS3, which isn't supported in <= IE8.

If this works, you could just add position:absolute; left:0; to a class and target the first element that way.

坚持沉默 2024-12-16 01:04:43

@vonkly 关于 position:absolute 的说法几乎是正确的。但您不必设置 left:0。使用 left:auto,您也可以节省 position:relative

table {
    padding-left: (width-of-your-td-elements);
}

table td:first-of-type {
    position: absolute;
}

@vonkly is almost right about position:absolute. But you don't have to set left:0. With left:auto, you can spare position:relative too.

table {
    padding-left: (width-of-your-td-elements);
}

table td:first-of-type {
    position: absolute;
}
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文