Answers for "Align all the items in the flexbox in the centre of the horizontal axis."

CSS
1

center flex

.flex-container {
  display: flex;
  height: 300px;
  justify-content: 
  center;
  align-items: center;
}
Posted by: Guest on May-07-2021

Code answers related to "Align all the items in the flexbox in the centre of the horizontal axis."

Browse Popular Code Answers by Language