如何更改<p:watermark> </p:watermark>的文本颜色

时间:2012-09-29 07:54:19

标签: jsf-2 primefaces

在我的jSF 2.0-PrimeFaces应用程序中,我正在使用组件,我需要更改组件中文本的颜色。

可以在here

找到样本

如何更改JSF 2-PrimeFaces组件的文本颜色?

1 个答案:

答案 0 :(得分:1)

来自primefaces文档:

There’s only one css style class applying watermark which is ‘.ui-watermark’, you can override this class to bring in your own style. Note that this style class is not applied when watermark uses html5 placeholder if available.

PrimeFaces用户指南页面:433 Primefaces使用jquery的水印。查看here了解详情。

试试这个:

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

注意:以上内容仅适用于链接中提到的某些浏览器。我在chromeIE7上进行了测试,它在Google Chrome但不在Internet Explorer