Я хочу настроить высоту строк таблицы matular6 в соответствии с содержимым (как вы можете видеть на прилагаемом рисунке).
Намерение всего этого: я хочу получить первоеСначала в ячейке DialectLanguage, затем 1- * соответствующие идентификаторы.Затем в той же ячейке я хочу перечислить все другие DialectLanguages и их идентификаторы и так далее ...
![ILLUSTRATION](https://i.ibb.co/fGLc359/Unbenannt.png)
<div class="mat-elevation-z8">
<mat-table [dataSource]="listData" matSort>
<ng-container matColumnDef="germanEntry">
<mat-header-cell *matHeaderCellDef mat-sort-header>German</mat-header-cell>
<mat-cell *matCellDef="let element"> {{ element.germanEntry }} </mat-cell>
</ng-container>
<ng-container matColumnDef="germanId">
<mat-header-cell *matHeaderCellDef mat-sort-header>German ID</mat-header-cell>
<mat-cell *matCellDef="let element">{{ element.germanId }} </mat-cell>
</ng-container>
<ng-container matColumnDef="references">
<mat-header-cell *matHeaderCellDef mat-sort-header>References to other Languages</mat-header-cell>
<mat-cell *matCellDef="let element">
<span *ngFor="
let item of element.reverseTranslations;
let i = index;
let isLast = last
">
{{ item.reverseGerman2DialectLanguage }} <br >
<span style="display:block;" *ngFor="let innerItem of item.reverseGerman2DialectIdList" let j="index;" let
isInnerLast="last">
{{ innerItem }}
<!-- Comma and space will be appended to all entries except the last one : -->
<span *ngIf="!isInnerLast">, </span>
</span>
</span></mat-cell>
</ng-container>
//
</mat-table>
</div>
В данный момент новые записи соответствующих ячеек перемещаютсявправо, когда ячейка заполнена.
Что я могу сделать как новичок в CSS, чтобы решить эту проблему?