Answers for "how to align a flex conatiner"

CSS
2

center div css flex

section {
  width: 200px;
  border: 1px solid #2d2d2d;
  display: flex;
  justify-content: center;
}
Posted by: Guest on June-19-2020
0

flex align children to side

flex-direction: column;
align-items: flex-start; //left
align-items: center; //center
align-items: flex-end; //right
Posted by: Guest on August-04-2020

Browse Popular Code Answers by Language