Custom CSS doesn't get applied when using <h:head> instead of <head>
问题 if I put: <head> //.. </head> <body> //.. </body> The style from my CSS is applied correctly, but when I change to : <h:head> //.. </h:head> <h:body> //.. </h:body> My style it seems wrong some parts of CSS. Why this is happenning ? Update: To simplify my problem i'm show two images below: Without <h:head>.. <h:body> (this is the correct CSS style) With <h:head>..<h:body> I just change to and the same thing to and this error happens. I'm new about JSF, there's something that i have to do ?