beiranc
beiranc
> 你需要把固定列的底部用margin-bottom 把滚动条撑开一下 你指的是固定 margin-bottom 吗?这样会导致在开启合计行的情况下样式异常
目前是通过 `pointer-events` 来**暂时性**的解决这个问题,使用的 CSS 如下: ```css .ivu-table-fixed-shadow { height: auto !important; pointer-events: none !important; td { pointer-events: auto !important; } } ``` > [除了指示该元素不是鼠标事件的目标之外,值 `none` 表示鼠标事件 ”穿透“ 该元素并且指定该元素 ”下面“ 的任何东西。](https://developer.mozilla.org/zh-CN/docs/Web/CSS/pointer-events)
认领 Pagination
您好,认领第 12 个任务的【下载中心】
可以[通过修改 CSS ](https://github.com/view-design/ViewUIPlus/issues/120#issuecomment-1480629023)来**暂时性**修复这个 Bug