0

我正在使用 JSF 2.2。我无法.css在我的.xhtml页面中添加。代码在.xhtml

<h:head>
    <title>Login Page</title>
</h:head>

<h:body>
<h:outputStylesheet library="resources/css" name="style.css" id="cascade1"/>

我也尝试将其声明为<h:head>具有相同结果的 a 。FireBug 正在查看此资源,但显示消息:

重新加载页面以获取源代码 .../javax.faces.resource/style.css.xhtml;...

4

1 回答 1

3

不需要使用library属性:

<h:outputStylesheet name="css/style.css"  />

这样,JSF servlet 期望style.css文件位于/resources/css路径中。

于 2013-02-22T07:26:15.763 回答