Particles CSSParticles CSSv0.0.10GitHub

Flexbox

Control CSS flexbox layout.

Classes

ClassProperties
.flexdisplay: flex;
.inline-flexdisplay: inline-flex;
.flex-rowflex-direction: row;
.flex-row-reverseflex-direction: row-reverse;
.flex-columnflex-direction: column;
.flex-column-reverseflex-direction: column-reverse;
.flex-wrapflex-wrap: wrap;
.flex-wrap-reverseflex-wrap: wrap-reverse;
.flex-nowrapflex-wrap: nowrap;
.flex-initialflex: 0 1 auto
.flex-1flex: 1 1 0%
.flex-autoflex: 1 1 auto
.flex-noneflex: none
.flex-growflex-grow: 1
.flex-shrinkflex-shrink: 1

.flex-row

Sets the flex-direction property to row.

1
2
3
4

.flex-row-reverse

Sets the flex-direction property to row-reverse.

1
2
3
4

.flex-column

Sets the flex-direction property to column.

1
2
3
4

.flex-column-reverse

Sets the flex-direction property to column-reverse.

1
2
3
4

.flex-wrap

Sets the flex-wrap property to wrap.

1
2

.flex-nowrap

Sets the flex-wrap property to nowrap.

1
2

.flex-wrap-reverse

Sets the flex-wrap property to wrap-reverse.

1
2