Answers for "display flex stretch width"

CSS
1

flexbox stretch height

.flex-2 {
    display: flex;  
    align-items: stretch;
}
Posted by: Guest on March-27-2020
0

how to create seprate flex box for adding items into the box

.container {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}

.item {
  width: 32%;
  padding-bottom: 32%; /* Same as width, sets height */
  margin-bottom: 2%; /* (100-32*3)/2 */
  position: relative;
}
Posted by: Guest on November-06-2020

Browse Popular Code Answers by Language