My questions is similar to the question given here
I am trying to add an background image to the <table>
component which is inside an <p:panel>
I tried lot of soluitons including the one given below but no luck.The background image is not applied in the table.
table {
width: 300px;
background-image: url('mypic.png');
background-repeat: no-repeat;
background-position: center top;
}
In my workspace, the image that I am trying to provide in the background is located under
C:\workspaces\Project\WebContent\resources\images\mylogo.jpg
Please let me know how to add background image to a <table>
which is inside an <p:panel>
in XHTML file.
Thanks in advance.