1

当我使用以下标语链接 Css 文件时

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

我有安排好的目录结构WebContent->resources->css->style.css ,我在浏览器上得到结果代码<link type="text/css" rel="stylesheet" href="RES_NOT_FOUND" />

但是当我将文件名更改为styles.css 时,它起作用了,但我不明白style.css 有什么问题。

4

1 回答 1

1

问题是您如何在项目中设置资源文件。由于这看起来是您的实际文件夹结构:

resources
- css
  - style.css

你必须像这样调用你的 CSS 文件:

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

更多信息:

于 2013-07-21T17:05:44.137 回答