Last active
December 5, 2023 18:52
-
-
Save kovaldn/4a1668fe169b8bb6656c to your computer and use it in GitHub Desktop.
CSS: footer
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<div class="wrapper"> | |
<div class="main-content"> | |
</div> | |
</div> | |
<footer class="page-footer"> | |
</footer> | |
/* прибьём футер к низу*/ | |
.wrapper{ | |
position:relative; | |
min-height:100%; | |
height:auto!important; | |
overflow:hidden; | |
} | |
.wrapper:after { | |
content: ""; | |
height: 80px; | |
display: block; | |
} | |
.page-footer{ | |
height: 80px; | |
margin-top: -80px; | |
} | |
/* прибьём футер к низу - конец*/ |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment