我正在使用物化css来设计我的个人网站。当我使用按钮时,其标题始终以大写字母显示。我试图改变它但没有这样做。有人可以帮帮我吗?
答案 0 :(得分:8)
将此添加到您的css
.btn {
text-transform: none;
}
或者如果您想为特定按钮更改它,只需将其添加到您的css:
.no-uppercase {
text-transform: none;
}
然后只需将no-uppercase
添加到按钮'课程。
答案 1 :(得分:1)
.btn {
text-transform: none !important;
}
.btn {
text-transform: unset !important;
}
答案 2 :(得分:0)
您必须像下面那样覆盖css文件中的按钮类
span.MuiButton-label {
text-transform: none;
font-family: sans-serif !important; //change any font style
}
答案 3 :(得分:0)
是的,您只需要在如下所示的Button标记中添加CSS
<Button style={{color:'white',textTransform:'none'}}>Home</Button>