作者热门文章
- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
我正在使用 Angular Material 表。
我可以将列对齐设置为右对齐。
HTML:
<table mat-table [dataSource]="dataSource">
...
<ng-container matColumnDef="position">
<th mat-header-cell *matHeaderCellDef> No. </th>
...
CSS:
.mat-column-position {
text-align: right;
}
但是当我使用排序功能时,列标题不再右对齐:
<table mat-table [dataSource]="dataSource" matSort>
...
<ng-container matColumnDef="position">
<th mat-header-cell *matHeaderCellDef mat-sort-header> No. </th>
...
我猜问题出在“排序”符号上。
有什么想法吗?
最佳答案
没错,它来自排序符号。解决此问题的一种方法是使用 CSS 仅更改 direction
该标题从右到左:
.mat-header-cell.mat-column-position {
direction: rtl;
}
/* If you want the same default margin for the sort icon */
:host ::ng-deep .mat-header-cell.mat-column-symbol .mat-sort-header-arrow {
margin-right: 6px;
margin-left: 0px;
}
或者,您可以在标题单元格上将 arrowPosition
属性设置为 before
以获得相同的结果:
<th mat-header-cell *matHeaderCellDef mat-sort-header arrowPosition="before">No.</th>
关于Angular Material 排序表 - 如何将标题文本右对齐?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/58269868/
我是一名优秀的程序员,十分优秀!