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] Link to comment https://forums.phpfreaks.com/topic/234537-div-without-scroll-bars/ 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; } Link to comment https://forums.phpfreaks.com/topic/234537-div-without-scroll-bars/#findComment-1205336 Share on other sites More sharing options...
KDM Posted April 25, 2011 Author Share Posted April 25, 2011 That worked, thanks. Link to comment https://forums.phpfreaks.com/topic/234537-div-without-scroll-bars/#findComment-1205905 Share on other sites More sharing options...
Recommended Posts
Archived
This topic is now archived and is closed to further replies.