Answers for "how to horizontally and vertically center content in css"

0

how to horizontally and vertically center content in css

.container {
  min-height: 100vh; // height of the browser viewport
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
Posted by: Guest on May-01-2021

Code answers related to "how to horizontally and vertically center content in css"

Browse Popular Code Answers by Language