我无法用角形材料的网格线自定义样式属性

问题描述 投票:0回答:1

我正在尝试在每行中创建6个图块,每个图块均由左上角的金额,右上角的+符号,慈善机构名称以下,最左端的日期以下等等。但是一切都在中间。如何自定义每个垫格网格的样式。

HTML Example

mat-grid-list cols="6" rowHeight="4:3" [gutterSize]="'10px'">
  <mat-grid-tile *ngFor="let item of items; let i=index">
    <div class="div-table">
      <div class="div-row">
        <div class="div-cell" style="font-weight: bold; font-size: medium;">{{amount | currency}}</div>  
      </div>
      <div class="div-row">
        <div>{{item.Name}}</div>
      </div>
    </div>
  </mat-grid-tile>

CSS Example


mat-grid-tile {
  background: lightblue;
}

.div-table {
  display: table;         
  width: auto;         
  background-color: #eee;         
}
.div-row {
  display: table-row;
  width: auto;
  clear: both;
}
.div-cell {
  float: left; 
  display: table-column;         
  width: 200px;         
  background-color: #ccc;  
}
angular angular-material angular6 angular5 angular7
1个回答
0
投票

这里有一个Stackblitz demo

您可以在图块中放置一个div作为容器(以避免弄乱mat-grid-tile样式)。在此容器内,您可以根据需要使用flex-box构建布局。每个图块的容器div可能都类似:

.container {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  width: 100%;
  height: 100%;
}

然后,在其中,您可以有3个部分:header(占可用垂直空间的20%+),footer(占可用垂直空间的20%+)和正文(占用页眉和页脚未占用的任何空间):

.header {
  flex-basis: 20%;
  order: 1; /* Assure this is the first element, at the top */
}

.footer {
  flex-basis: 20%;
  order: 3; /* Assure this is the third element, at the bottom */
}

.body {
  flex: 1;
  order: 2; /* Assure this is the second element, in the middle */
}

您可以在这里完成几乎所有您想做的事情。例如,您说过要在标题中具有左侧的名称和右侧的符号。因此,让我们也将标题放在另一个flex容器本身中,并带有两个小节:header-startheader-end(以防万一您需要不同的CSS样式):

.header {
  display: flex;
  justify-content: space-between;
  flex-basis: 20%;
  order: 1;
}

整个HTML就像:

<mat-grid-list cols="2" rowHeight="2:1">
    <mat-grid-tile *ngFor="let i of [1,2,3,4]">
        <div class="container">
            <section class="header">
                <section class="header-start>
                    Charity name
                </section>
                <section class="header-end">
                    <mat-icon>home</mat-icon>
                </section>
            </section>

            <section class="footer">
                footer
            </section>

            <section class="body">
                body
            </section>
        </div>
    </mat-grid-tile>
</mat-grid-list>
© www.soinside.com 2019 - 2024. All rights reserved.