gpt4 book ai didi

css - 为什么 css 样式不适用于模式?

转载 作者:行者123 更新时间:2023-11-28 15:50:22 24 4
gpt4 key购买 nike

出于某种原因,css 样式不适用于 React Modal。有什么理由吗?

render() {
return (
<div>
<Modal defaultOpen={this.props.isShowing} className="openmodal">
</Modal>
</div>
);
}

CSS 文件

.openmodal{
text-align: center;
background-color: black;
border-radius: 0;
width: 400px;
position: relative;
}

最佳答案

如果你想使用 javascript 样式,你可以像这样应用它;

const openmodal = {
content: {
textAlign: 'center',
backgroundColor: 'black',
borderRadius: '0',
width: '400px',
position: 'relative'
}
}

render() {
return (
<div>
<Modal defaultOpen={this.props.isShowing} style={openmodal}>
</Modal>
</div>
);
}

尝试使用内联样式。

关于css - 为什么 css 样式不适用于模式?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/41962866/

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