Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

How can I set the background image to fit the exact size of the browser's window. I am familiar with JavaScript/HTML/CSS/JQuery so any language will work for me.

share|improve this question
3  
Check out this css-tricks.com/perfect-full-page-background-image – Nelson Oct 12 '12 at 18:32

3 Answers

HTML & CSS:

<html>
<head>
<title>bg</title>
<style>
.bg {
    background: url(yourimage);
    display: block;
    position: absolute;
    width: 100%;
    height: 100%;
}
</style>
</head>

<body>
<div class="bg"></div>
</body>
</html>
share|improve this answer

I've used the Backstretch jQuery plugin for this before.

http://srobbin.com/jquery-plugins/backstretch/

share|improve this answer

Thanks to @Nelson 's comment I have found my answer here: http://css-tricks.com/perfect-full-page-background-image/

share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.