掲示板

how to include CSS file in JSF

11年前 に Swetha Kumpati によって更新されました。

how to include CSS file in JSF

New Member 投稿: 4 参加年月日: 12/08/28 最新の投稿
Hi,

I have created few xhtml for my liferay portlets... they are working well but i am unable to apply CSS to my xhtml...

please consider my sample code..
<h:outputStylesheet name="override.css" />
<h:outputLabel styleClass="dataBold" value="JESUS"></h:outputLabel>

the override.css file is in CSS folder that is under docroot in my liferay portlet project.
I also tried by including library in outputStylesheet tag as below :
<h:outputStylesheet library="css" name="override.css" />
<h:outputLabel styleClass="dataBold" value="JESUS"></h:outputLabel>

PLease help me asap i want to get my css work in the xhtml
Thanks in Advance

Swetha
11年前 に Swetha Kumpati によって更新されました。

RE: how to include CSS file in JSF

New Member 投稿: 4 参加年月日: 12/08/28 最新の投稿
hey please someone help me... am really running out ideas....
thumbnail
11年前 に David H Nebinger によって更新されました。

RE: how to include CSS file in JSF

Liferay Legend 投稿: 14914 参加年月日: 06/09/02 最新の投稿
You should not be trying to inject CSS and/or JS in your xhtml pages.

Instead you should use the liferay-portlet.xml to include these resources.
thumbnail
11年前 に Neil Griffin によって更新されました。

RE: how to include CSS file in JSF

Liferay Legend 投稿: 2655 参加年月日: 05/07/27 最新の投稿
There are two ways of loading CSS resources in a JSF2 view/composition:

1. Using the HTML link element tag like this:
<link href="#{request.contextPath}/css/foo.css" rel="stylesheet" type="text/css"></link>

2. Using the JSF2 h:outputStylesheet component tag like this:
<h:outputStylesheet library="css" name="css" />

The benefit of using #1:
- The browser directly requests a resource from the server and does not invoke the JSF lifecycle.

The benefits of using #2:
- The CSS resource can use the #{resource['']} EL-expression inside it for images.
- The href URL generated by the h:outputStylesheet renderer is compatible with WSRP.

So #1 is always faster, but #2 is more flexible. This demo uses #2 simply for testing purposes.