crx349 发表于 2022-10-25 15:30:52

placeholder的字体大小统一设置

在公用的css文件里面写上:

/*输入框提示字体*/
input::-webkit-input-placeholder {/* WebKit browsers */   font-size: 0.9rem; } input:-moz-placeholder { /* Mozilla Firefox 4 to 18 */   font-size: 0.9rem; } input::-moz-placeholder { /* Mozilla Firefox 19+ */   font-size: 0.9rem; } input :-ms-input-placeholder { /* Internet Explorer 10+ */   font-size: 0.9rem; }
/*输入框提示字体*/

留着,备用,同时分享~
页: [1]
查看完整版本: placeholder的字体大小统一设置