我想要 bootstrap-vue 表中正确的固定列 但是,文档中的Sticky功能仅固定在左侧。 有没有办法修复右侧或最后一列?
我希望左右列都固定到位。
文档网:https://bootstrap-vue.org/docs/components/table#sticky-columns
Sticky header No border collapse Row IDHeading {{ scope.label }}
Copyright 2014-2025 https://www.php.cn/ All Rights Reserved | php.cn | 湘ICP备2023035733号
这可以通过用我们自己的一些 CSS 覆盖 bootstrap 的 CSS 来实现。首先确保最后一列具有
stickyColumn: true选项以及您想要为其提供的任何其他选项:... 'i', 'j', 'k', { key: "l", stickyColumn: true, isRowHeader: true, variant: "primary" },这将确保它有一个我们可以轻松选择的类名。应用样式,为表中最后一个粘性列赋予
属性right: 0:<style> .b-table-sticky-column:last-child { right: 0; } </style>codesandbox 示例