如何在资料用户界面5中关闭<Button>的自动大写功能?
<Button>
<Button variant="contained">Hello</Button>
它将自动将文本转换为HELLO,但我只想保留原始的Hello。我怎么能这么做?
HELLO
Hello
发布于 2022-11-06 10:10:32
只需将此属性添加到按钮中:
style={{textTransform: 'none'}}
https://stackoverflow.com/questions/74328551
相似问题