关于bootstrap:bootstrapTable-固定最右侧列重复且掉下来

52次阅读

共计 470 个字符,预计需要花费 2 分钟才能阅读完成。


如上图所示,而后不停地搜寻,找到的根本无法解决问题。
所以,本人又看看了源码,查看他人例子,终于找到了解决办法;
只须要加点 css 款式即可。所以以防大家遇到一样的问题,记录一下。

.fixed-columns,
.fixed-columns-right {
  position: absolute;
  top: 0;
  height: 100%;
  min-height: 41px;
  background-color: #fff;
  box-sizing: border-box;
  z-index: 2;
  box-shadow: 0 -1px 8px rgba(0, 0, 0, 0.08);
}
.fixed-columns .fixed-table-body,
.fixed-columns-right .fixed-table-body {
  min-height: 41px;
  overflow-x: hidden !important;
}
.fixed-columns {left: 0;}
.fixed-columns-right {
  right: 0;
  box-shadow: -1px 0 8px rgba(0, 0, 0, 0.08);
}

正文完
 0