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

Link to comment
Share on other sites

This thread is more than a year old. Please don't revive it unless you have something important to add.

Join the conversation

You can post now and register later. If you have an account, sign in now to post with your account.

Guest
Reply to this topic...

×   Pasted as rich text.   Restore formatting

  Only 75 emoji are allowed.

×   Your link has been automatically embedded.   Display as a link instead

×   Your previous content has been restored.   Clear editor

×   You cannot paste images directly. Upload or insert images from URL.

×
×
  • 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.