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.

Here is my HTML code-

<html>
<head>
<link type="text/css" href="/static/theme.css" rel="Stylesheet" />  
</head>
<body>
<div id="footer">
<hr>Copyright content goes here</div>
</body>
</html>

content of theme.css is

#footer {
    position: absolute;
    bottom: 0px;
    color: #f00;

}

when I view the HTML, I see that HR line is available (width of line) only till the content "Copyright content goes here". I need to make sure that copyright content is available at the very bottom only so I'm using absolute+relative CSS.

When I change position to relative, it works fine- I see full HR line.

why is absolute+relative positioning "cutting" the HR line?

share|improve this question

1 Answer

up vote 2 down vote accepted

Add width:100% to footer style.

#footer {
    position: absolute;
    bottom: 0px;
    color: #f00;
    width:100%;
}
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.