Home > Software design >  How to limit the height of MUI Autocomplete input box
How to limit the height of MUI Autocomplete input box

Time:04-07

I am having trouble in limiting the height of MUI Autocomplete component. When I select the value from the list it automatically add empty space or row at the bottom for input which I do not want.

Below is my example.

https://codesandbox.io/s/mui-5-forked-n8nc6i?file=/src/App.js

screenshot

CodePudding user response:

If you want to bypass the default css style from MUI, then you can use inside your css the following:

.MuiAutocomplete-inputRoot {
  flex-wrap: nowrap !important;
}

example

  • Related