KDM Posted April 23, 2011 Share Posted April 23, 2011 How do I make my footer div expand infinitely across the bottom of the screen without getting scroll bars? My footer div contains a background image that I want to repeat horizontally across the bottom of the page. I've tried all of the overflow properties and none of them did the job. [attachment deleted by admin] Quote Link to comment Share on other sites More sharing options...
cssfreakie Posted April 23, 2011 Share Posted April 23, 2011 that's not what overflow does or should do. You need to set the width of the footer to 100% and than repeat-x the image it could look like this html <div id="footer"> </div> css: #footer{ width:100%; height:120px; background: url(../images/gradient.png) repeat-x; } Quote Link to comment Share on other sites More sharing options...
KDM Posted April 25, 2011 Author Share Posted April 25, 2011 That worked, thanks. Quote Link to comment Share on other sites More sharing options...
Recommended Posts
Join the conversation
You can post now and register later. If you have an account, sign in now to post with your account.