문제

I have a tag with which i return to the home page.

<h:link  value="Home" outcome="/webpages/NewWelcome.xhtml"/>

I would like to have an png Home icon instead of "Home" text. How can I add an image into the value attribute.

I tried

<h:link  value="#{<img style="border:0;" src="smiley.gif" alt="HTML tutorial" width="42" height="42">}" outcome="/webpages/NewWelcome.xhtml" />

This obviously didn't work. I am not sure how can i.

Any Help would be appreciated. Thank You :)

도움이 되었습니까?

해결책

Add h:graphicImage inside h:link:

<h:link outcome="home" >
    <h:graphicImage value="/images/home.png" style="border: none" />
</h:link>
라이센스 : CC-BY-SA ~와 함께 속성
제휴하지 않습니다 StackOverflow
scroll top