简体   繁体   中英

How to display a unit in an input field with Angular Material?

I want to display a measurement unit inside an Angular Material input field. It should look like this: 在此处输入图像描述

How can I achieve this?

Use <span matSuffix>m²</span> like in the example below:

<mat-form-field appearance="outline">
  <mat-label>Room Size</mat-label>
  <input type="text" matInput />
  <span matSuffix>m²</span>
</mat-form-field>

See documentation .

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