Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我需要在 modalPanel 标题中使用图像作为背景。我正在使用 JSF + Richfaces。
有可能吗?
谢谢
这应该可以通过将标题构面插入到模式面板中,其中包含您希望出现在面板中的内容。
<f:facet name="header"> <div style="background: url("/bla/foo.png") repeat-x scroll 50% 50% #F36D21;" /> </f:facet>
在内部,您可以声明一个带有重复背景图像的 div,作为构面标题中其他内容的背景。