1.1.14.5.5. fejezet, CSS

EL kifejezések a css-ben

{project}/main/webapp/resources/css/my.css
body {
	background-image:
		url("#{resource['img/bg_body.gif']}");
	background-repeat: repeat-x;
}
{project}/main/webapp/resources/img/bg_body.gif
<!DOCTYPE html>
<html xmlns="http://www.w3.org/1999/xhtml"
    xmlns:h="http://java.sun.com/jsf/html"
    xmlns:f="http://java.sun.com/jsf/core"
    xmlns:ui="http://java.sun.com/jsf/facelets"
    xmlns:c="http://java.sun.com/jsp/jstl/core"
    xmlns:p="http://primefaces.org/ui">
<h:head>
<f:facet name="first">
    <meta content="text/html;charset=utf-8" http-equiv="Content-Type"/>
    <meta content="index, follow" name="robots"/>
    <title>Title</title>
	<h:outputStylesheet library="css" name="my.css"/>
    <link href="${request.contextPath}/resource/templates/myproject/favicon.ico" rel="shortcut icon"/>
</f:facet>