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.

I was wondering if there is a way to create a black transparent overlay to basically cover the entire contents of the webpage?

<body>
<div class="main-container">
    <!--many more divs here to create webpage-->
</div>
</body>

Many thanks in advance

share|improve this question
1  
.main-container { background: #000; opacity: 0.4; height: 100%; width: 100%;? – Morpheus Jan 14 at 14:26

3 Answers

up vote 2 down vote accepted

use this css on a div to create a black transparent overlay:

#overlay {
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.6);
    position: fixed;
    top:0;
    left: 0;
}
share|improve this answer

The very basic overlay can be made using position absolute:

.overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    opacity: .6;
    background-color: #000;
}

http://jsfiddle.net/dfsq/4Mn7Q/

UPD. As GSP pointed in comment this is not optimal solution when window height is bigger then a viewport. In this case body {position: relative;} should be used as well.

share|improve this answer
I was about to answer with this one as well, but for me at least on FireFox thsi didn't work if the viewport was smaller than the window (i.e. there were scroll bars and the user scrolls down the page). – GSP Jan 14 at 14:41
Right, this is the problem. In this case one should use position fixed or add body {position: relative;} – dfsq Jan 14 at 14:45

This might be what you are looking for: http://malsup.com/jquery/block/

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.