Reputation: 356
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
Reputation: 304
Try adding the matAutocompletePositionto attribute your input element.
<Input matAutocompletePosition="below">
SAMPLE
Upvotes: 3