Forum Moderators: not2easy
Can CSS do this. I have looked around but to no avail.
Cheers
[webmasterworld.com...]
Do you mean
<table> <tr> <td><img src="" width="100%" height="20"></td> </tr> </table>
or is there a more elegant method?
<img src="image.jpg" width="100%"> <div style="position:absolute;top:0;left:0"> <h1>My content</h1> <p> blah blah blah... </p> </div>
<img src="image.jpg" style="position:absolute;z-index:-1" width="100%"> <div> <h1>My content</h1> <p> blah blah blah... </p> </div>
But i'm not sure what browser support for z-index is like.