Answers for "flexbox display items in a column"

CSS
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
0

whats the best ways to 3 x 3 perfects squares on a webpage using flexbox

.parent {
  display: flex;
  height: 300px; /* Or whatever */
}

.child {
  width: 100px;  /* Or whatever */
  height: 100px; /* Or whatever */
  margin: auto;  /* Magic! */
}
Posted by: Guest on November-02-2020

Browse Popular Code Answers by Language