We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
On displays with a width less than 992 pixels the footer overlaps the "Top Ten tags" section:
margin-bottom
Increase the margin-bottom property on body to 120px.
body
120px
Add this to main.css:
main.css
body { display: flex; flex-direction: column; height: 100vh; } #content { flex: 1; } .footer { flex-shrink: 0; background-color: #f5f5f5; }
then add the id="content" attribute to base.html:
id="content"
base.html
<div id="content" class="container"> ... </div> <footer class="footer"> ... </footer>
Any feedback on which solution to use or other possible solutions is appreciated.
The text was updated successfully, but these errors were encountered:
No branches or pull requests
The problem
On displays with a width less than 992 pixels the footer overlaps the "Top Ten tags" section:
Tested solutions
Increase
margin-bottom
Increase the
margin-bottom
property onbody
to120px
.Pros
Cons
margin-bottom
needs updated.Use flexbox
Add this to
main.css
:then add the
id="content"
attribute tobase.html
:Pros
Cons
Feedback wanted
Any feedback on which solution to use or other possible solutions is appreciated.
The text was updated successfully, but these errors were encountered: