在我的 jSF 2.0-PrimeFaces 应用程序中,我正在使用组件,我需要更改组件中文本的颜色。
样品可以在这里找到
如何更改 JSF 2-PrimeFaces 组件的文本颜色?
来自 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;
}
注意:以上仅适用于链接中提到的某些浏览器。我对其进行了测试chrome
,IE7
它正在运行,Google Chrome
但无法运行Internet Explorer