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?