CodeHQ

Archive for April, 2019

|

Flex – justify content: space-between fill white space

Sunday, April 14th, 2019

To get rid of the horrible spacing between the last two elements on a row of elements which are being aligned with

justify-content: space-between

… try the following:

.grid {
  display: flex;
  flex-flow: row wrap;
  justify-content: space-between;
}

.grid::after {
  content: "";
  flex: auto;
}

Tags: , , , , ,
Posted in CSS | No Comments »