Answers for "flex stretch to fill width"

3

flexbox stretch height

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

flex one whole width

.flexContainer {
  height: 100vh;
  display: flex;
  flex-wrap: wrap;
}

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

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

flex fill space

flex-grow: 1
Posted by: Guest on November-05-2021

Code answers related to "flex stretch to fill width"

Code answers related to "Javascript"

Browse Popular Code Answers by Language