gpt4 book ai didi

reactjs - 在reactjs中设置文本输入占位符颜色

转载 作者:行者123 更新时间:2023-12-03 13:28:58 26 4
gpt4 key购买 nike

使用普通 CSS 时,如果您想设置占位符的样式,请使用这些 css 选择器:

::-webkit-input-placeholder {
color: red;
}

但我不知道如何在 react 内联样式中应用这些类型的样式。

最佳答案

只需为您的“input”标签指定一个“id”或“class”,然后将您的 css 样式放入 src 内的 App.css 中即可。例如

//App.css or external stylesheet

#inputID::placeholder {
color: #ff0000;
opacity: 1;
}

//your jsx code
<input type="text" id="inputID" placeholder="Your text here" />

这实际上对我有用。

关于reactjs - 在reactjs中设置文本输入占位符颜色,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/38922878/

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