I have a footer with 100% width. This is approximately 50 pixels depending on its content.
Is it possible to give this #footer a background image that overflows this div?
The image is about 800x600px, and I want it to be located in the lower left corner of the footer. It should look like a background image for my site, but I already set the background image on my body. I need another image located in the lower left corner of my site, and the #footer div is perfect for this.
#footer { clear: both; width: 100%; margin: 0; padding: 30px 0 0; background:#eee url(images/bodybgbottomleft.png) no-repeat left bottom fixed; }
The image is set to the footer, however it does not overflow the div. Is it possible to do this?
overflow:visible does not do the job!
css image background
matt Nov 25 '10 at 21:13 2010-11-25 21:13
source share