Skip to content

Instantly share code, notes, and snippets.

View Xavka's full-sized avatar

Luka Čavka Xavka

View GitHub Profile
.flex-container {
flex-wrap: nowrap;
}
.flex-container {
flex-wrap: wrap;
}
.flex-container {
flex-wrap: wrap-reverse;
}
.flex-container {
flex-flow: <flex-direction> || <flex-wrap>;
}
.flex-container {
justify-content: flex-start;
}
.flex-container {
justify-content: flex-end;
}
.flex-container {
justify-content: center;
}
.flex-container {
justify-content: space-between;
}
.flex-container {
justify-content: space-around;
}
.flex-container {
align-items: stretch;
}