I have created a CSS sticky footer
that is designed like so:
#foot {
position:fixed;
left:0px;
bottom:0px;
height:30px;
width:100%;
text-align: right;
padding-top: 7px;
font-size: small;
background-color: none;
}
However, a mysterious horizontal line keeps appearing at the bottom of all form
s. Curiously, when I remove the position: fixed
(or use absolute
), the line disappears.
For reference, here is the test site
HTML - main index.html
<!DOCTYPE html>
<html lang="en" data-ng-app="wtApp">
<!-- the rest of the HTML content goes here -->
</html>