简体   繁体   中英

mat-icon right padding? Angular Material

Angular Material Icons:

I have a mat-icon that I want to be beside the text. Nothing I do will reduce the space between the icon and the text though.

在此处输入图像描述

Based on this HTML:

      <span>
        <mat-icon [inline]="true" style="display:inline;">locked</mat-icon>
        <span AMELIA SMITH</span>
      </span>

remove the inline and add custom css to align the text, current values are not accurate but you could change them

in CSS:

mat-icon {
  vertical-align:middle;
}

.a {
  padding-top:8px;
  vertical-align:middle;
}

or only

mat-icon {
  vertical-align:text-bottom;
}

and in html:

<span>
  <mat-icon >locked</mat-icon>
  <span class="a"> AMELIA SMITH</span>
</span>

The technical post webpages of this site follow the CC BY-SA 4.0 protocol. If you need to reprint, please indicate the site URL or the original address.Any question please contact:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM