如何更改选择时打开的材质ui弹出框高度

时间:2019-07-02 10:18:35

标签: material-ui

我想更改在材料ui中的选择时打开的弹窗高度

我试图通过classes属性传递样式,但没有帮助。如何提及在选择单击时打开的组件的样式。

<Select value={contCountrySelected} onChange={(event) => this.handleControllingCountryChange(event.target.value)} styleName= {'app.fbSelectTextPos'}
inputProps={{ name: 'controllingcountry', id: 'controllingcountry'}}>
{
    countryCodes.map((item) => (<MenuItem value={item.c2name} key={item.c2name}> {item.c2value} </MenuItem>
    ))
}
</Select>

1 个答案:

答案 0 :(得分:0)

下面是一个示例,该示例通过className Select属性使用Menu的{​​{1}}道具来设置高度:

MenuProps

Edit Select height