moshtaba morsali
moshtaba morsali

Reputation: 356

Open Angular Material Autocomplete(mat-autocomplete) Always Under Input

How can I Open Angular Material Autocomplete(mat-autocomplete) always in bottom of Input? Is there any position config? or I must use CSS tricks?

Upvotes: 1

Views: 4237

Answers (1)

JaMondo
JaMondo

Reputation: 304

Try adding the matAutocompletePositionto attribute your input element.

<Input matAutocompletePosition="below">

SAMPLE

Upvotes: 3

Related Questions