gpt4 book ai didi

html - 如何组合文本转换 :uppercase with "normal" user text?

转载 作者:太空宇宙 更新时间:2023-11-03 23:07:52 24 4
gpt4 key购买 nike

我有一些带有占位符的输入和文本区域。

http://jsfiddle.net/k0o5k53s/

假设我希望这些占位符是大写的。我添加了“文本转换”属性并将其设置为“大写”。

.cool{
width: 50%;
text-transform: uppercase;
}

它有效,但现在所有用户文本也都是大写的。所以,我的问题是,如何将大写占位符与“普通”用户文本结合起来?我知道我们可以很容易地在 html 中键入大写的“MAIL”、“NAME”和“MESSAGE”,并删除文本转换,但我想知道,是否有一种方法可以在不更改 html 的情况下解决这个问题。

最佳答案

仅将大写应用于占位符:

.cool{
width: 50%;
}

.cool::-webkit-input-placeholder {
text-transform: uppercase;
}

.cool:-moz-placeholder { /* Firefox 18- */
text-transform: uppercase;
}

.cool::-moz-placeholder { /* Firefox 19+ */
text-transform: uppercase;
}

.cool:-ms-input-placeholder {
text-transform: uppercase;
}

jsfiddle

关于html - 如何组合文本转换 :uppercase with "normal" user text?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/34067590/

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