如何在html中更改占位符大小,颜色?

时间:2016-06-28 07:58:52

标签: html css wordpress

<input type="text" name="fname" placeholder="First name">

在该输入字段中,我需要更改占位符字体大小,表单颜色

2 个答案:

答案 0 :(得分:0)

在你的css文件中使用它:

::-webkit-input-placeholder { /* WebKit, Blink, Edge */
    color:    red;
    font-size: 15px;
}
:-moz-placeholder { /* Mozilla Firefox 4 to 18 */
     color:    red;
    font-size: 15px;
}
::-moz-placeholder { /* Mozilla Firefox 19+ */
    color:    red;
    font-size: 15px;
}
:-ms-input-placeholder { /* Internet Explorer 10-11 */
    color:    red;
    font-size: 15px;
}

答案 1 :(得分:0)

您可以像这样更改占位符样式:

    String str="4444ntrjntkr555566";
     Pattern p = Pattern.compile("(\\d{4})$");
      Matcher m = p.matcher(str);
      if (m.find()) {
        System.out.println(m.group(m.groupCount()));
      }