Answers for "how to make a flex container full page"

CSS
0

how to make a flex container full page

.wrapper {
  display: flex;
  flex-direction: column;
  min-height: 100vh;
}

.wrapper > * {
  padding: 20px;
}

.page-main {
  flex-grow: 1;
}
Posted by: Guest on January-07-2022

Code answers related to "how to make a flex container full page"

Browse Popular Code Answers by Language