Your browser doesn't support the features required by impress.js, so you are presented with a simplified version of this presentation.
For the best experience please use the latest Chrome, Safari or Firefox browser.
display: flex
display: -ms-flexbox
display: box
.parent {
display: flex;
/* or inline-flex */
}
.child {
flex: 1;
}
.parent {
display: flex;
/* or inline-flex */
flex-direction: row | row-reverse | column | column-reverse;
flex-wrap: nowrap | wrap | wrap-reverse; /* poor BS */
justify-content: flex-start | flex-end | center | space-between | space-around;
align-items: flex-start | flex-end | center | baseline | stretch;
align-content: flex-start | flex-end | center | space-between | space-around | stretch;
}
/* flex-flow: [flex-direction] || [flex-wrap]; */
/* default: row nowrap */
.child {
flex: [flex-grow] [flex-shrink] [flex-basis]; /* recommended */
/* default: 0 1 auto */
order: [integer];
align-self: auto | flex-start | flex-end | center | baseline | stretch;
}
Use a spacebar or arrow keys to navigate