I'm trying to add multiple form fields, I wanted to add 2 form fields in a row but I'm not able to add space between form fields ( not able to separate underline)
<li>
<mat-form-field>
<input matInput [(ngModel)]="name" placeholder="What's your name?">
</mat-form-field>
<mat-form-field>
<input matInput [(ngModel)]="name" placeholder="hello">
</mat-form-field>
</li>
Stackblitz: https://stackblitz.com/edit/angular-rqczqy
I want to have space between "what's your name" and "hello"
How can I achieve this? Any help would be greatly appreciated!
You can solve this using
flexbox
. I forked your stackblitz. Here one of many solutions : Inline matInputTemplate
CSS