Flexbox - justify-content

Back to the index.

justify-content.

flex-start

div.flexmain {
	justify-content: flex-start;
}

Par 1

Par 2

Par 3

Par 4

flex-end

div.flexmain {
	justify-content: flex-end;
}

Par 1

Par 2

Par 3

Par 4

center

div.flexmain {
	justify-content: center;
}

Par 1

Par 2

Par 3

Par 4

space-between

div.flexmain {
	justify-content: space-between;
}

Par 1

Par 2

Par 3

Par 4

space-around

div.flexmain {
	justify-content: space-around;
}

Par 1

Par 2

Par 3

Par 4

Continue

blah CONTINUE