gpt4 book ai didi

css - material-ui 按钮覆盖模态窗口 react

转载 作者:太空宇宙 更新时间:2023-11-04 08:20:12 25 4
gpt4 key购买 nike

如何禁用 materiul-ui 按钮 RaisedButton 的覆盖。

我有一个模态窗口,当我打开它时 - 按钮仍然显示。

我应该向我的按钮添加什么属性来禁用覆盖?

请使用 material-ui 的人帮忙。

屏幕如下enter image description here

我尝试对按钮的容器使用 z-index 但没有帮助

最佳答案

我给按钮添加了z-indexposition,现在可以了。

 <div className={styles.watch__button}>
<RaisedButton
onClick={buttonRole}
backgroundColor={timerButtonColor}
style={{zIndex: 0, position: 'relative'}}>
<div className={styles.watch__button__text}>{buttonName}</div>
</RaisedButton>
</div>
<div className={styles.watch__button}>
<RaisedButton
onClick={this.handleShowCalendar}
backgroundColor={genButtonColor}
style={{zIndex: 0, position: 'relative'}}>
<div className={styles.watch__button__text}>Generate</div>
</RaisedButton>
</div>
<Modal
isOpen={showCalendar} >
<button onClick={this.handleShowCalendar}>close</button>
<h1>Modal Content</h1>
</Modal >

也许有人知道如何使用类来实现它,因为它只适用于样式

关于css - material-ui 按钮覆盖模态窗口 react ,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/45586086/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com