Answers for "flex height full"

3

flexbox stretch height

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

flex one whole width

.flexContainer {
  display: flex;
  flex-wrap: wrap;
}

.item:first-child {
  flex: 1 1 100%;
  height: 100vh;
  width: 300px;
  margin-bottom: 20px;
}

.item {
  flex: 1 1 40%;
  height: 50px;
  background-color: red;
  margin: 0 20px;
}
Posted by: Guest on May-02-2022
-1

how to stretch height flexbox row

/* on child items add */

height: 1fr;
Posted by: Guest on April-24-2022

Code answers related to "Javascript"

Browse Popular Code Answers by Language