我正在使用 ag-grid-angular
并且無法擺脫單元格頂部和底部的內部填充
任何幫助,將不勝感激。
uj5u.com熱心網友回復:
像這樣的東西可能會幫助你。但重要的是,應該在您匯入 ag 網格的地方進行更改。我正在將它們從 40px 高度更改為 30px 高度以及行高
@import 'ag-grid-community/dist/styles/ag-grid.css';
@import 'ag-grid-community/dist/styles/ag-theme-alpine.css';
.ag-theme-alpine .ag-row {
height: 30px;
}
.ag-theme-alpine .ag-cell, .ag-theme-alpine .ag-full-width-row .ag-cell-wrapper.ag-row-group{
line-height: min(var(--ag-row-height, 30px), 30px);
}
這是一個示例 https://stackblitz.com/edit/ag-grid-angular-hello-world-k3cp9p?file=src/styles.scss
轉載請註明出處,本文鏈接:https://www.uj5u.com/shujuku/496146.html