Сообщение от BETEPAH
|
как же я мечтаю о CSS-правиле: {display: block-footer }
|
Я в последнее время использую примерно такие правила:
<style>
html, body{margin: 0; padding: 0}
body{
/* stick footer to bottom */
display: flex;
flex-direction: column;
min-height: 100vh;
}
main{
background: yellow;
/* stick footer to bottom */
flex: 1;
-ms-flex-preferred-size: auto; /* override autoprefixer */
}
footer{
background: red;
height: 50px;
}
</style>
<main></main>
<footer></footer>