从"@material-ui/core": "3.9.2",
升级到"@material-ui/core": "^4.0.0-rc.0",
后,我遇到了一些CSS问题。
带有输入的示例,某些CSS:height: auto !important;
似乎丢失了:
我的配置与此处相同:https://material-ui.com/getting-started/installation/
我的代码很基本:
<FormControl>
<InputLabel htmlFor="email">{`Your email address`}</InputLabel>
<Input
id="email"
onChange={e => this.setState({ email: e.target.value })}
type="text"
onKeyPress={this.handleKeyPress}
value={this.state.email}
/>
</FormControl>
答案 0 :(得分:0)
import 'tachyons'
发生冲突。
删除后,效果很好。