gpt4 book ai didi

javascript - 更改占位符的字体大小

转载 作者:行者123 更新时间:2023-11-28 02:26:10 24 4
gpt4 key购买 nike

我正在尝试更改占位符的字体大小。所以我在下面的类中包含了字体大小,但它没有改变。

你能告诉我如何修复它,以便将来我自己修复它。

在下面提供我的代码片段和沙箱

https://codesandbox.io/s/61183rqp3w

 cssLabel: {
"&$cssFocused": {
color: purple[500],
fontSize: 14
}
},
cssFocused: {},
cssUnderline: {
"&:after": {
borderBottomColor: purple[500],
fontSize: 14
}
},
cssOutlinedInput: {
"&$cssFocused $notchedOutline": {
borderColor: purple[500],
fontSize: 14
}
},
notchedOutline: {},

最佳答案

为了实现您的目标,您必须更改 InputProps 中的输入样式属性,例如:

注意:这将显示...如果占位符溢出。

const styles = theme => ({
input: {
"&::placeholder": {
textOverflow: "ellipsis !important",
color: "blue",
fontSize: 14
}
}
});

组件应该是:

<TextField
InputProps={{
classes: {
input: classes.input
}
}}
variant="outlined"
placeholder="Exp. XXXXXXXXXXXX"
/>

请在此处找到代码沙箱:https://codesandbox.io/s/9j479w189y

关于javascript - 更改占位符的字体大小,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/53904034/

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