Hello, my code structure is simular to this, div has some classes.
But I want within them to put anything that will apear behind the
content a background. And I want it to be in fixed location
<div>
<div>
content
</div>
</div>
I tried doing this
<div>
<div>
<table>
<td class="test">
content
</td>
</table>
</div>
</div>
and having into my header this
td.test
{
background-image:url('menu.png');
background-repeat:no-repeat;
background-position:center;
background-size: 100%;
}
but it apears only where thre is text.
Plz help me what to do?