其他组件的问题 https://codesandbox.io/s/qqqk23x3q
单独正常工作 https://codesandbox.io/s/1y2mvo0ol3
JSX:
<td>
<ChipsTextbox chipName="test IPA" />
</td>
<Menu id="simple-menu" open={open} onClose={this.handleClose}>
<TextField onChange={this.onChange} onKeyDown={this.handleKeyPress} />
</Menu>
CSS:
.MuiPopover-paper-1706 {
outline: none;
position: absolute;
min-width: 16px;
max-width: calc(100% - 32px);
overflow-y: auto;
overflow-x: hidden;
min-height: 16px;
max-height: calc(100% - 32px);
}
答案 0 :(得分:0)
.MuiPopover-paper-1706
的父元素应具有position: relative
CSS属性。如果不是这样,则具有相对位置的position: absolute
元素将相对于最近的父对象定位。