我想在 react.js 中更改自动完成框的高度,但只呈现宽度而不是高度,尽管我同时使用了这两个属性
<Autocomplete
id="combo-box-demo"
options={Options}
getOptionLabel={(option) => option.title}
style={{ width: 250, marginRight: 25, height: 31}}
renderInput={(params) => <TextField {...params} label="Category" variant="outlined" />}
/>
<Button variant="contained" color="primary" style={{ width: 150, height: 31, marginTop: 15}}>
Search
</Button>