1

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

样品可以在这里找到

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

4

1 回答 1

2

来自 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 的水印。在这里查看更多信息。

试试这个:

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

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

于 2012-09-29T08:50:16.467 回答