如何移动垫扩展指示?

时间:2017-11-22 16:29:35

标签: angular material-design

是否可以移动垫子扩展指示器(Angular,Material Design)在标题之前设置它?

在材料文档https://material.angular.io/components/expansion/overview

上没有关于此的信息

enter image description here

谢谢:)

2 个答案:

答案 0 :(得分:8)

您始终可以覆盖默认样式。

.mat-expansion-panel-header {
  flex-direction: row-reverse;

  .mat-content {
    padding-left: 12px;
  }
}

答案 1 :(得分:0)

您可以使用以下代码轻松完成此操作!

<mat-accordion>
        <mat-expansion-panel [togglePosition]="'before'">
          <mat-expansion-panel-header >
            <mat-panel-title>

            </mat-panel-title>

          </mat-expansion-panel-header>

        </mat-expansion-panel>
</mat-accordion>

只需添加 [togglePosition] =“'之前'”