1
I’m making a responsive web system using some bootstrap elements. The whole system is responsive except for the footer that in addition to leaving the fixed position at the bottom of the screen still decreases the size.
Follow the html and css code of the footer:
<footer class="footer">
<div class="container">
<span class="text-muted" style="
position: absolute;
bottom: 0;
width: 120%;
height: 60px;
line-height: 60px;
background-color: #222222;
margin-left: -214px;
text-align: center;">
<font>
<font> Desenvolvido por ****** - *****</font>
</font>
</span>
</div>
</footer>
Note: HTML and CSS are together to prevent headaches.
Why the style is in span and not in footer?
– user83428
It was generated by that google editor that appears when you press Ctrl+shift+i, I just kept.
– Mariana Bayonetta
Is it like this in the project or just in the question? If so in the project try to move this style to the footer.
– user83428
I commented a photo with the project.
– Mariana Bayonetta