为什么 rich:modalPanel styleclass 样式没有应用于它?
我有一个 rich:modalPanel
,我从外部 css 设计它的样式, 但问题是 styleClass
属性没有将我的样式应用于我的 rich:modalPanel
。 我尝试将输入文本元素放入其中,然后在外部 css 中调用特定的类,但它工作正常。 此外,headerClass
属性也不起作用。
我缺少什么?
谢谢。
I have a rich:modalPanel
which I am styling from external css,
But the problem is the styleClass
attribute does not apply my style to my rich:modalPanel
.
I tried to put input text element inside then call a specific class in my extrernal css but it is working fine.
Additionally the headerClass
attribute is not working also.
what am i missing?
Thanks.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
您是否使用 Firefox 上的 Firebug 来查看 HTML 的渲染效果?
是否应用了任何内联样式?
modalPanel 应用了哪些 CSS 样式?
在 CSS 中,您可以尝试在 modalPanel 规则之后添加
!important
来查看是否存在特异性问题。Have you used Firebug on Firefox to see what your HTML is being rendered as?
Are there any inline styles being applied?
What CSS styles are being applied to the modalPanel?
In your CSS you could try adding
!important
after the rules for modalPanel to see if its a specificity issue.