shu-c-view
Version:
rollup 打包vue组件库框架
20 lines (18 loc) • 634 B
text/less
/* grid 列表 */
.base-grid {
.el-pagination {
margin-top: 3px;
}
.baseGrid__fixed-row {
position: sticky; //(不要用fixed,因为他是基于屏幕定位,也会出现滚动的问题)
// position: '-webkit-sticky';
// background: rgba(0, 126, 255) ; //(设置自己要的背景色)
top: 0;
z-index: 3; // 列的固定是4(因为有固定列,为了不互相影响所以要注意列的层级, 不然滚动的时候会有bug,发现固定的列不固定了)
display: table-row;
width: 100%;
/* td {
background: rgb(26, 81, 136) !important;
} */
}
}