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'm working in a new proyect, but I have a problem with my CSS-.

<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8" />
<title>Graphics</title>

</script>

<style type="text/css">
* {
    margin : 0;
    padding : 0;
    font-family : Verdana;
    color : #555;
}

#content {
    height : 1000px;
    width : 100%;
    background : #09F;
}

#subBar {
    height : auto;
    width : 100%;
    position : fixed;
    bottom : 0;
}

#subBar-content {
    height : 30px;
    width : 100%;
    background : #CCC;
}

#status-column {
    position : absolute;
    z-index : 5;
    width : 200px;
    height : 500px;
    background : red;
    top : -470px;
        right : 0;

}
</style>
</head>
<body>
<div class="header">
</div>
<div id="content"></div>
<div id="subBar">
  <div id="subBar-content">
    <div id="status-column"></div>
  </div>
</div>
</body>
</html>

Note that the subBar always stay in the bottom and is fixed; subBar and subBar-contet have the same height, but #status-column is bigger.

There is another way to find the same result without using top and right properties?

Thanks.

share|improve this question
What's the problem? What do you want this to do? – Chris Herbert Dec 31 '12 at 0:04
I don't wanna to use top with negative numbers – Tomirammstein Dec 31 '12 at 0:06
2  
What are you trying to accomplish? If you don't want status column to overlap subBar-content, use "bottom: 30px" rather than "top: -470px" – Chris Herbert Dec 31 '12 at 0:09

Know someone who can answer? Share a link to this question via email, Google+, Twitter, or Facebook.

Your Answer

 
discard

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

Browse other questions tagged or ask your own question.