https://codesandbox.io/p/sandbox/ n2nr3l
HTML
Код: Выделить всё
menu
Код: Выделить всё
.page {
display: flexbox;
flex-direction: column;
height: 100vh;
background-color: orange;
}
.menu {
width: 100%;
height: 50px;
background-color: lightblue;
}
.container {
background-color: lightcoral;
display: flex;
flex-direction: row;
/* need to make container use remaining height of .page */
flex-grow: 1;
}
html,
body {
padding: 0;
margin: 0;
}
Подробнее здесь: https://stackoverflow.com/questions/791 ... -container
Мобильная версия