I'm trying to leave the footer at the end of the document, but it's at the bottom of the page I'm viewing, thus disrupting the usability of the system ...
Follow the footer:
<div class="container body-content">
@RenderBody()
<footer class="fixarRodape">
<hr />
<p>© @DateTime.Now.Year</p>
</footer>
</div>
The class I'm using to fix ...
style>
.fixarRodape {
bottom: 0;
position: fixed;
width: 90%;
text-align: center;
}
</style>
and the example of my problem where the footer appears on other components of the screen. My intention is to leave it at the bottom of the page, when the scroll bar rolls to the end, so it appears at the end.