Jump to content

Div without scroll bars?


KDM

Recommended Posts

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

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;
}

Archived

This topic is now archived and is closed to further replies.

×
×
  • Create New...

Important Information

We have placed cookies on your device to help make this website better. You can adjust your cookie settings, otherwise we'll assume you're okay to continue.