热门标签 | HotTags
当前位置:  开发笔记 > 编程语言 > 正文

首字母:大写;也会影响占位符-text-transform:capitalize;AlsoaffectsPlaceholder

Ihavethefollowingsimpleinput.我有以下简单的输入。<inputtypetextplaceholderWhatisyourusern

I have the following simple input.

我有以下简单的输入。


When I use text-transform: capitalize; to capitalize the first letter of each word, the placeholder also gets capitalized: What Is Your Username?

当我使用文本转换:资本化;要大写每个字的第一个字母,占位符也要大写:你的用户名是什么?

How can I keep the placeholder intact?

如何保持占位符完好无损?

1 个解决方案

#1


36  

You could style the placeholder--

你可以给占位符—

::-webkit-input-placeholder {
   text-transform: initial;
}

:-moz-placeholder { 
   text-transform: initial;
}

::-moz-placeholder {  
   text-transform: initial;
}

:-ms-input-placeholder { 
   text-transform: initial;
}

推荐阅读
author-avatar
huangpeishan49
这个家伙很懒,什么也没留下!
PHP1.CN | 中国最专业的PHP中文社区 | DevBox开发工具箱 | json解析格式化 |PHP资讯 | PHP教程 | 数据库技术 | 服务器技术 | 前端开发技术 | PHP框架 | 开发工具 | 在线工具
Copyright © 1998 - 2020 PHP1.CN. All Rights Reserved | 京公网安备 11010802041100号 | 京ICP备19059560号-4 | PHP1.CN 第一PHP社区 版权所有